#include <sys/select.h> |
|
|
#include <sys/select.h> #include <sys/time.h> /* Header files */ int select( int nfds, fd_set * readfds, // a bit array fd_set * writefds, // a bit array fd_set * errorfds, // a bit array struct timeval * timeout ); |
Meaning of the parameters:
|
|