summaryrefslogtreecommitdiff
path: root/userland/libc/include
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-03-14 13:09:59 +0100
committerAnton Kling <anton@kling.gg>2024-03-14 13:09:59 +0100
commit2e8b474d4219e7faaac3823e73c8d528c2698a37 (patch)
tree7d93b5fd220e8b703ba69f9b55122d15c9d619fb /userland/libc/include
parent051ac9f1941e8bc6ad87beccb61a2d53111ba8ea (diff)
random changes made
Diffstat (limited to 'userland/libc/include')
-rw-r--r--userland/libc/include/syscall.h8
1 files changed, 8 insertions, 0 deletions
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);