From 2229fd91f7230ae7068814ae029b733945852eb1 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Tue, 2 Apr 2024 09:17:06 +0200 Subject: Kernel: Fix some memory leaks --- userland/libc/include/syscall.h | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/libc/include/syscall.h') 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); -- cgit v1.2.3