CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2025/06/04 03:08:52
Modified files: lib/libutil : Symbols.map imsg.c imsg.h imsg_init.3 Log message: More imsg function additions: imsgbuf_get() will replace imsg_get() in the long run. Has much simpler return value since nobody uses the imsg_get() return value for anything. imsg_ibufq_push() and imsg_ibufq_pop() allows to push and pop imsg into an ibufq so they can be processed at a later stage or from a different task. OK tb@