TOC  Next

The epoll API

What

Efficiently monitor large numbers of file descriptors (fds) to see if I/O is possible on any of them.

When

Linux 2.6.0

Where

Linux specific; other implementations have similar features, e.g., kqueue (FreeBSD), /dev/poll (Solaris)


(C) 2006, Michael Kerrisk