Posts Tagged ‘epoll_ctl’

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 [...]

Saturday, August 29th, 2009 at 00:47 | Comments Off
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
[...]

Saturday, August 29th, 2009 at 00:42 | Comments Off
Categories: E
TOP