diff options
author | Anton Kling <anton@kling.gg> | 2024-06-24 00:03:55 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-06-24 00:04:21 +0200 |
commit | 90a8be18547040cab8c395c64d681be1f95ec517 (patch) | |
tree | 9fc71f5dad4442ba99c459233027cdc5b98f9bdd /userland | |
parent | f37e21114750c066a1b9f9d8e789185746fd1c45 (diff) |
Kernel: Purge unused/bad syscalls
Diffstat (limited to 'userland')
-rw-r--r-- | userland/libc/include/syscall.h | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index 32a9e81..1f68b60 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -40,20 +40,11 @@ #define SYS_GETCWD 32 #define SYS_ISATTY 33 #define SYS_RANDOMFILL 34 - -#define SYS_OUTW 35 -#define SYS_INL 36 -#define SYS_OUTL 37 -#define SYS_MAP_FRAMES 38 -#define SYS_VIRTUAL_TO_PHYSICAL 39 -#define SYS_INSTALL_IRQ 40 -#define SYS_TMP_KERNEL_HANDLE_PACKET 41 - -#define SYS_MUNMAP 42 -#define SYS_OPEN_PROCESS 43 -#define SYS_LSEEK 44 -#define SYS_CONNECT 45 -#define SYS_SETSOCKOPT 46 +#define SYS_MUNMAP 35 +#define SYS_OPEN_PROCESS 36 +#define SYS_LSEEK 37 +#define SYS_CONNECT 38 +#define SYS_SETSOCKOPT 39 int syscall(uint32_t eax, uint32_t ebx, uint32_t ecx, uint32_t edx, uint32_t esi, uint32_t edi); |