summaryrefslogtreecommitdiff
path: root/kernel/syscalls/queue.c
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-03-17 20:55:34 +0100
committerAnton Kling <anton@kling.gg>2024-03-17 20:55:34 +0100
commit0dccff86e50dfe1555b8bc29862dba2b972a3705 (patch)
tree8d0c354c65278afdc3427bb52e1e63900ccdbc05 /kernel/syscalls/queue.c
parent2e8b474d4219e7faaac3823e73c8d528c2698a37 (diff)
stuff
Diffstat (limited to 'kernel/syscalls/queue.c')
-rw-r--r--kernel/syscalls/queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/syscalls/queue.c b/kernel/syscalls/queue.c
index 94f7960..8cd043b 100644
--- a/kernel/syscalls/queue.c
+++ b/kernel/syscalls/queue.c
@@ -2,7 +2,7 @@
#include <syscalls.h>
int syscall_queue_create(u32 *id) {
- return queue_create(id);
+ return queue_create(id, current_task);
}
int syscall_queue_add(u32 queue_id, struct event *ev, u32 size) {