Simple IPC with pipes

This commit is contained in:
2025-09-06 11:47:01 +02:00
parent 643d692259
commit cd0e262e56
21 changed files with 312 additions and 17 deletions

View File

@ -5,6 +5,7 @@ enum {
SYS_DEBUGPRINT = 1,
SYS_PROCESSCTL = 2,
SYS_IOCTL = 3,
SYS_IPCPIPE = 4,
};
#endif // SHARE_HDRS_SYSCALL_H_