diff options
author | Anton Kling <anton@kling.gg> | 2024-04-15 20:34:58 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-15 20:34:58 +0200 |
commit | 62ba2a9ab01e5f2a9b1cd325af8d3112702b7713 (patch) | |
tree | 0926fbbc9d8c0058ee0f37e4f8691a554ca647e3 /kernel/syscalls/ipc.c | |
parent | 3acd8cf6c8e41c1e1228c60ac5c4ea0f69e7aff5 (diff) |
Bug fix and cleanup.
Diffstat (limited to 'kernel/syscalls/ipc.c')
-rw-r--r-- | kernel/syscalls/ipc.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/kernel/syscalls/ipc.c b/kernel/syscalls/ipc.c deleted file mode 100644 index b6947d1..0000000 --- a/kernel/syscalls/ipc.c +++ /dev/null @@ -1,18 +0,0 @@ -#include <ipc.h> -#include <syscalls.h> - -int syscall_ipc_register_endpoint(u32 id) { - return ipc_register_endpoint(id); -} - -int syscall_ipc_read(u8 *buffer, u32 length, u32 *sender_pid) { - return ipc_read(buffer, length, sender_pid); -} - -int syscall_ipc_write_to_process(int pid, u8 *buffer, u32 length) { - return ipc_write_to_process(pid, buffer, length); -} - -int syscall_ipc_write(int endpoint, u8 *buffer, u32 length) { - return ipc_write(endpoint, buffer, length); -} |