diff options
author | Anton Kling <anton@kling.gg> | 2024-02-07 11:36:21 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-02-07 22:25:47 +0100 |
commit | 35958c8c6b600482f68fef08ac26547b5655e987 (patch) | |
tree | a3329136adc1b92885c60462e7dd74c98eaa0953 /userland/libc/include | |
parent | b7fa1457727338416499d1b0144f1042a6878a97 (diff) |
A lot of small changes
Diffstat (limited to 'userland/libc/include')
-rw-r--r-- | userland/libc/include/syscall.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index b50c061..72f781d 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -45,6 +45,13 @@ #define SYS_IPC_READ 36 #define SYS_IPC_WRITE 37 #define SYS_IPC_WRITE_TO_PROCESS 38 +#define SYS_OUTW 39 +#define SYS_INL 40 +#define SYS_OUTL 41 +#define SYS_MAP_FRAMES 42 +#define SYS_VIRTUAL_TO_PHYSICAL 43 +#define SYS_INSTALL_IRQ 44 +#define SYS_TMP_KERNEL_HANDLE_PACKET 45 int syscall(uint32_t eax, uint32_t ebx, uint32_t ecx, uint32_t edx, uint32_t esi, uint32_t edi); |