winsock poll() vs select()

Started by
1 comment, last by Trillian 17 years, 6 months ago
Hello! I'm starting a network library and I've got through Beej's tutorials. I've seen the methods poll() and select(). I'd like to use the poll() function but I have some questions about it : 1- Is it standard, it is not mentionned in MSDN 2- Is it unrecommended to use it instead of select() 3- If I set the timeout value to 0, does it block or does it return immediately? And is there some other thing I should know about the use of poll()? thanks!
Advertisement
IIRC, poll() is unix-only.
Thanks a lot, I'm going to use select()!

This topic is closed to new replies.

Advertisement