From 636858dbbd48ed9f5073793b46740302aa202f43 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Tue, 28 Nov 2023 20:07:50 +0100 Subject: Kernel: Add basic IPC and move to microkernel design. The IPC design is currently a WIP and is nowhere near complete --- userland/libc/include/syscall.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'userland') diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index 7a3b50d..b50c061 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -41,6 +41,11 @@ #define SYS_ISATTY 33 #define SYS_RANDOMFILL 34 +#define SYS_IPC_REGISTER_ENDPOINT 35 +#define SYS_IPC_READ 36 +#define SYS_IPC_WRITE 37 +#define SYS_IPC_WRITE_TO_PROCESS 38 + int syscall(uint32_t eax, uint32_t ebx, uint32_t ecx, uint32_t edx, uint32_t esi, uint32_t edi); int s_syscall(int sys); -- cgit v1.2.3