All remotely modern systems have poll, and it's a greatly superior interface to select/pselect in almost all ways:
poll allows more fine-grained detection of status than select.
poll does not have limits on the max file descriptor you can use (and more importantly, does not have critical vulnerabilities when you fail to check for file descriptors past the FD_SETSIZE limit).
The only disadvantages I can think of to using poll are that:
- unlike
pselect, poll cannot atomically unmask/mask signals, so you can't use it for waiting for a set of events that includes both file descriptor activity and signals unless you resort to the self-pipe trick.
poll only has millisecond resolution for the wait timeout, rather than microsecond (select) or nanosecond (pselect).
Certainly portability of poll is not a consideration anymore. Any system old enough to lack poll is full of so many vulnerabilities it should not be connected to a network.
In summary, unless you have very special needs (tiny timeout intervals, nasty signal interactions, scaling to millions of persistent connections, etc.) I would simply use poll and be done with it. As others have mentioned, libevent is also an option, but it's not clean/safe code (its use of select actually invokes dangerous UB trying to workaround the limitations of select!) and I find code that uses libevent is generally a lot more unnecessarily complicated than code that simply uses poll directly.
epoll(). – Robᵩ Dec 8 '11 at 22:12epoll()is purely Linux-related. I should add that I put an emphasis on portability. – Philip Dec 8 '11 at 22:13pselect? – Brett Hale Dec 8 '11 at 22:25epollzealots running around recommending it with no understanding of its limitations or the extreme cases where it's actually beneficial. – R.. Dec 9 '11 at 1:14