No description
Find a file
2025-10-17 14:16:12 +02:00
src WIP: libipc compiles with Zig 0.15.2. TODO: tests. 2025-10-17 14:16:12 +02:00
.gitignore
build.zig WIP: make libipc compatible with zig 0.15.2. 2025-10-16 15:59:42 +02:00
build.zig.zon WIP: make libipc compatible with zig 0.15.2. 2025-10-16 15:59:42 +02:00
ipc.pc
libipc.h
makefile Fix wrong makefile rule. 2024-06-28 00:22:59 +02:00
makefile.target
README.md
TODO.md make dist 2024-06-21 21:33:41 +02:00

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.).