ReactOS 0.4.16-dev-91-g764881a
|
#include <wintirpc.h>
#include <stdint.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/syscall.h>
#include <sys/epoll.h>
#include <unistd.h>
Go to the source code of this file.
Macros | |
#define | __NR_epoll_create 254 |
#define | __NR_epoll_ctl 255 |
#define | __NR_epoll_wait 256 |
Functions | |
int | epoll_create (int size) |
int | epoll_ctl (int epfd, int op, int fd, struct epoll_event *event) |
int | epoll_wait (int epfd, struct epoll_event *events, int maxevents, int timeout) |
#define __NR_epoll_create 254 |
Definition at line 39 of file epoll_sub.c.
#define __NR_epoll_ctl 255 |
Definition at line 40 of file epoll_sub.c.
#define __NR_epoll_wait 256 |
Definition at line 41 of file epoll_sub.c.
Definition at line 44 of file epoll_sub.c.
Definition at line 50 of file epoll_sub.c.
Definition at line 57 of file epoll_sub.c.