summaryrefslogtreecommitdiff
path: root/kernel/syscalls/queue.c
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-04-29 15:50:32 +0200
committerAnton Kling <anton@kling.gg>2024-04-29 15:50:32 +0200
commitd60fa1fc01e600c4a163bbe82fab3f1986cb1476 (patch)
tree01358975cf35954f87466b805e603ebe9d5b13e6 /kernel/syscalls/queue.c
parent528031e0e4c17f12b88f6773d31c7a56bf92b956 (diff)
Kernel/TCP: Increment seq number after sending SYN|ACK
Diffstat (limited to 'kernel/syscalls/queue.c')
-rw-r--r--kernel/syscalls/queue.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/kernel/syscalls/queue.c b/kernel/syscalls/queue.c
deleted file mode 100644
index 8cd043b..0000000
--- a/kernel/syscalls/queue.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <queue.h>
-#include <syscalls.h>
-
-int syscall_queue_create(u32 *id) {
- return queue_create(id, current_task);
-}
-
-int syscall_queue_add(u32 queue_id, struct event *ev, u32 size) {
- return queue_add(queue_id, ev, size);
-}
-
-int syscall_queue_wait(u32 queue_id) {
- return queue_wait(queue_id);
-}