No description
Find a file
2024-06-17 14:50:26 +02:00
src Some documentation in libipc.h, size_t for buffer sizes. 2024-06-17 14:50:26 +02:00
.gitignore
build.zig
ipc.pc
libipc.h Some documentation in libipc.h, size_t for buffer sizes. 2024-06-17 14:50:26 +02:00
makefile
makefile.target
README.md
TODO.md

libipc

libipc - Simple, easy-to-use IPC library.

Compilation

Either make or zig build.

For more options, see either the makefile or build.zig.

Install

make install
# By default, install in the /usr/local/ prefix, but it can be changed.
make install PREFIX=/usr/

Usage

See the dedicated repository.

Status

LibIPC reached a stable state and is usable. Performance is fine for most projects, but can be largely improved. The poll syscall is used instead of more recent and faster syscalls (epoll, kqueue, etc.).