tags:

views:

317

answers:

1

Hi there!I want to know if I can use the poll() function on a MinGW development chain. I have CodeBlocks+MinGW. Thanks a lot.

A: 

Last I heard, poll() was either not supported or provided limited functionality on mingw. But you can supply your own basic poll() that uses select() internally.

Artelius