Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think that this answers your question:
October 2017 Update:
The email referenced above is at least as old as 2001; the
poll()command is now (2017) supported across all modern operating systems – including BSD. In fact, some people believe thatselect()should be deprecated. Opinions aside, portability issues aroundpoll()are no longer a concern on modern systems. Furthermore,epoll()has since been developed (you can read the man page), and continues to rise in popularity.For modern development you probably don’t want to use
select(), although there’s nothing explicitly wrong with it.poll(), and it’s more modern evolutionepoll(), provide the same features (and more) asselect()without suffering from the limitations therein.