From 2e8b474d4219e7faaac3823e73c8d528c2698a37 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 14 Mar 2024 13:09:59 +0100 Subject: random changes made --- userland/libc/include/syscall.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'userland/libc') diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index 72f781d..5e0e567 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -53,6 +53,14 @@ #define SYS_INSTALL_IRQ 44 #define SYS_TMP_KERNEL_HANDLE_PACKET 45 +#define SYS_TCP_CONNECT 46 +#define SYS_TCP_WRITE 47 +#define SYS_TCP_READ 48 + +#define SYS_QUEUE_CREATE 49 +#define SYS_QUEUE_ADD 50 +#define SYS_QUEUE_WAIT 51 + 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