summaryrefslogtreecommitdiff
path: root/kernel/syscalls/ppoll.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/syscalls/ppoll.c')
-rw-r--r--kernel/syscalls/ppoll.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/kernel/syscalls/ppoll.c b/kernel/syscalls/ppoll.c
deleted file mode 100644
index 7c5befa..0000000
--- a/kernel/syscalls/ppoll.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <fs/vfs.h>
-#include <poll.h>
-#include <sched/scheduler.h>
-#include <syscalls.h>
-
-int syscall_poll(SYS_POLL_PARAMS *args) {
- struct pollfd *fds = args->fds;
- size_t nfds = args->nfds;
- int timeout = args->timeout;
- return poll(fds, nfds, timeout);
-}