blob: 93940488011dad3b22f191543fdedae381bcef2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <Kernel/Syscall.h>
#include <errno.h>
#include <poll.h>
extern "C" {
int poll(struct pollfd* fds, int nfds, int timeout)
{
int rc = syscall(SC_poll, fds, nfds, timeout);
__RETURN_WITH_ERRNO(rc, rc, -1);
}
}
|