select
select
Posted Nov 20, 2008 8:04 UTC (Thu) by rwmj (subscriber, #5474)In reply to: select by ncm
Parent article: MinGW and why Linux users should care
"MinGW" neither has nor doesn't have select().
The Fedora MinGW project is a cross-compiler that creates Windows executables. If you want
select-like ability, you could use some Win32 API for that such as - as nix says -
WaitForMultipleObjects.
But you could also (and we'd recommend) use some portability library like glib or NSPR which deals
with the matter in another way and has already been ported to whatever Win32 APIs exist (on
Windows) or whatever Linux/POSIX APIs exist on Linux/Unix.
