No description
Find a file
2025-10-22 03:06:12 +02:00
src pong and pongd working (with C bindings) 2025-10-22 03:06:12 +02:00
.gitignore
build.zig pong and pongd working (with C bindings) 2025-10-22 03:06:12 +02:00
build.zig.zon
ipc.pc
libipc.h Add pong example with c bindings. 2025-10-21 00:30:56 +02:00
makefile Default release mode: small. 2025-10-18 11:34:02 +02:00
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.).