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 /kernel/includes | |
parent | 7eceb43433634ee253507208baf1d8298b40e377 (diff) |
Kernel: Fix some memory leaks
Diffstat (limited to 'kernel/includes')
-rw-r--r-- | kernel/includes/syscalls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/includes/syscalls.h b/kernel/includes/syscalls.h index cd49a1b..07a73e3 100644 --- a/kernel/includes/syscalls.h +++ b/kernel/includes/syscalls.h @@ -11,6 +11,7 @@ void syscall_outw(u16 port, u16 word); u32 syscall_inl(u16 port); void syscall_outl(u16 port, u32 l); +int syscall_open_process(int pid); int syscall_queue_create(u32 *id); int syscall_queue_add(u32 queue_id, struct event *ev, u32 size); |