diff options
author | Anton Kling <anton@kling.gg> | 2024-04-02 09:17:06 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-02 09:39:03 +0200 |
commit | 2229fd91f7230ae7068814ae029b733945852eb1 (patch) | |
tree | 416487f8c66c389c57dee465f648362ca59b8f23 /userland/libc/include/syscall.h | |
parent | 7eceb43433634ee253507208baf1d8298b40e377 (diff) |
Kernel: Fix some memory leaks
Diffstat (limited to 'userland/libc/include/syscall.h')
-rw-r--r-- | userland/libc/include/syscall.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index e375079..c5fe3e4 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -61,6 +61,7 @@ #define SYS_QUEUE_ADD 50 #define SYS_QUEUE_WAIT 51 #define SYS_MUNMAP 52 +#define SYS_OPEN_PROCESS 53 int syscall(uint32_t eax, uint32_t ebx, uint32_t ecx, uint32_t edx, uint32_t esi, uint32_t edi); |