summaryrefslogtreecommitdiff
path: root/kernel/scalls/ppoll.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/scalls/ppoll.h')
-rw-r--r--kernel/scalls/ppoll.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/kernel/scalls/ppoll.h b/kernel/scalls/ppoll.h
deleted file mode 100644
index 13700b5..0000000
--- a/kernel/scalls/ppoll.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stddef.h>
-
-typedef struct SYS_POLL_PARAMS {
- struct pollfd *fds;
- size_t nfds;
- int timeout;
-} __attribute__((packed)) SYS_POLL_PARAMS;
-
-int syscall_poll(SYS_POLL_PARAMS *args);