Viewing: poll.c
📄 poll.c (Read Only) ⬅ To go back
#include "poll.h"
#include "syscall.h"
#include "errno.h"

int poll(struct pollfd* fds, nfds_t nfds, int timeout) {
    int r = _syscall3(SYS_POLL, (int)fds, (int)nfds, timeout);
    return __syscall_ret(r);
}