From 372c633aa22d826bc515213ad4211791440f60f8 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 3 Oct 2024 16:08:46 +0200 Subject: libc: Add sendfile and queue --- userland/libc/include/syscall.h | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/libc/include/syscall.h') diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index 87622c5..dda4b82 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -51,6 +51,7 @@ #define SYS_QUEUE_CREATE 43 #define SYS_QUEUE_MOD_ENTRIES 44 #define SYS_QUEUE_WAIT 45 +#define SYS_SENDFILE 46 int syscall(uint32_t eax, uint32_t ebx, uint32_t ecx, uint32_t edx, uint32_t esi, uint32_t edi); -- cgit v1.2.3