Red Bear OS base baseline from 0.1.0 pre-patched archive

This commit is contained in:
Red Bear OS
2026-06-27 09:21:43 +03:00
commit dd08b76a39
433 changed files with 78493 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# ipcd
A userspace daemon for interprocess communication.
## Usage
See the `examples` folder.
Simply open `chan:<name>` with O_CREAT where `<name>` is any name you'd like to create a listener.
This listener can accept clients by calling `dup("listen")`.
Open `chan:<name>` without O_CREAT to connect. Now you can read and write between both streams.