Files
six/uselect.h
2025-06-10 12:11:08 +02:00

8 lines
190 B
C

#include <sys/select.h>
/* an uninterruptable version of select. M.Z. Oct 2008 */
int uselect(int nfds,
fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
struct timeval *timeout);