TOC
Previous
Next
The epoll API
Why
Existing APIs provide similar functionality:
-
I/O multiplexing
(select() or poll());
-
Signal-driven I/O (ask kernel to send a signal when I/O is possible).
But these APIs have limitations...
(C) 2006, Michael Kerrisk