socket select usage, OOB description.
http://man7.org/linux/man-pages/man2/select_tut.2.html man7.org > Linux > man-pages NAME | SYNOPSIS | DESCRIPTION | RETURN VALUE | NOTES | EXAMPLE | SEE ALSO | COLOPHON The Linux Programming Interface SELECT_TUT(2) Linux Programmer's Manual SELECT_TUT(2) NAME top select, pselect, FD_CLR, FD_ISSET, FD_SET, FD_ZERO - synchronous I/O multiplexing SYNOPSIS top /* According to POSIX.1-2001 */ #include <sys/select.h> /* According to earlier standards */ #include <sys/time.h> #include <sys/types.h> #include <unistd.h> int select(int nfds , fd_set * readfds , fd_set * writefds , fd_set * exceptfds , struct timeval * utimeout ); void FD_CLR(int fd , fd_set * set )...