Split processctl() syscall into multiple smaller ones

This commit is contained in:
2025-10-14 16:37:36 +02:00
parent 8aec45316c
commit c34a253d11
22 changed files with 359 additions and 236 deletions

View File

@ -2,7 +2,6 @@
#define SHARE_HDRS_SYSCALL_H_
#define SYS_DEBUGPRINT 1
#define SYS_PROCESSCTL 2
#define SYS_IOCTL 3
#define SYS_MMAN_MAP 5
#define SYS_MMAN_UNMAP 6
@ -16,6 +15,15 @@
#define SYS_IPC_PIPEMAKE 14
#define SYS_IPC_PIPEDELETE 15
#define SYS_IPC_PIPECONNECT 16
#define SYS_PROC_KILL 17
#define SYS_PROC_SPAWN 18
#define SYS_PROC_POLLSTATE 19
#define SYS_PROC_RUN 20
#define SYS_PROC_GETPID 21
#define SYS_PROC_ARGLEN 22
#define SYS_PROC_ARGV 23
#define SYS_PROC_LISTSIZE 24
#define SYS_PROC_STAT 25
#endif // SHARE_HDRS_SYSCALL_H_