Migrate off the big ipcpipe() syscall

This commit is contained in:
2025-10-14 08:12:04 +02:00
parent c972b0fbd1
commit 9108299c31
4 changed files with 203 additions and 137 deletions

View File

@ -4,7 +4,6 @@
#define SYS_DEBUGPRINT 1
#define SYS_PROCESSCTL 2
#define SYS_IOCTL 3
#define SYS_IPCPIPE 4
#define SYS_MMAN_MAP 5
#define SYS_MMAN_UNMAP 6
#define SYS_SCHEDRELEASE 7
@ -12,5 +11,11 @@
#define SYS_RAND 9
#define SYS_VFSMOUNT 10
#define SYS_VFSUNMOUNT 11
#define SYS_IPC_PIPEREAD 12
#define SYS_IPC_PIPEWRITE 13
#define SYS_IPC_PIPEMAKE 14
#define SYS_IPC_PIPEDELETE 15
#define SYS_IPC_PIPECONNECT 16
#endif // SHARE_HDRS_SYSCALL_H_