Posts Tagged ‘epoll’
epoll_wait – wait for an I/O event on an epoll file descriptor
USAGE
#include <sys/epoll.h>
int epoll_wait(int epfd, struct epoll_event * events,
int [...]
Categories: E
epoll_ctl – control interface for an epoll descriptor
USAGE
#include <sys/epoll.h>
int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)
DESCRIPTION
Control an epoll descriptor, epfd, by requesting that the operation op
[...]
Categories: E
