Implement streams IPC mechanism
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m47s

This commit is contained in:
2026-03-18 22:27:56 +01:00
parent 77ab25bcee
commit 80a728f04b
22 changed files with 311 additions and 50 deletions

View File

@@ -3,6 +3,7 @@
#include <printf.h>
#include <process_self.h>
#include <stdarg.h>
#include <streams.h>
#include <string.h>
#include <system.h>
@@ -22,6 +23,6 @@ void mprintf (const char* fmt, ...) {
va_end (args);
mail_send (process_get_exec_pgid (), buf, len);
stream_write (process_get_pgid (), STREAM_OUT, buf, len);
free (buf);
}