summaryrefslogtreecommitdiff
path: root/kernel/syscalls/ppoll.c
blob: 7c5befa95e84bf7c4045d2cd4f68bea9cdc3cf2a (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);
}