Searched defs:fdset (Results 1 - 3 of 3) sorted by relevance
/osnet-11/usr/src/lib/libnsl/rpc/ |
H A D | rpc_sel2poll.c | 50 fd_set *fdset, /* source fd_set array */ 63 if (FD_ISSET(n, fdset)) { 48 __rpc_select_to_poll( int fdmax, fd_set *fdset, struct pollfd *p0) argument
|
/osnet-11/usr/src/cmd/hal/addons/network-devices/ |
H A D | snmp.c | 104 fd_set fdset; local 107 FD_ZERO(&fdset); 108 snmp_select_info(&fds, &fdset, &timeout, &block); 109 fds = select(fds, &fdset, NULL, NULL, block ? NULL : &timeout); 116 snmp_read(&fdset);
|
/osnet-11/usr/src/lib/libsocket/inet/ |
H A D | rcmd.c | 121 fd_set fdset; local 292 FD_ZERO(&fdset); 293 FD_SET(s, &fdset); 294 FD_SET(s2, &fdset); 295 while ((selret = select(FD_SETSIZE, &fdset, (fd_set *)0, 297 if (FD_ISSET(s, &fdset)) { 307 if (FD_ISSET(s2, &fdset)) { 314 FD_CLR(s2, &fdset);
|
Completed in 17 milliseconds