Searched refs:fdsr (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/usr.sbin/ypbind/
H A Dypbind.c157 static fd_set fdsr; variable
490 fdsr = svc_fdset;
495 switch (select(_rpc_dtablesize(), &fdsr, NULL, NULL, &tv)) {
506 if (READFD > 0 && FD_ISSET(READFD, &fdsr)) {
512 svc_getreqset(&fdsr);
558 FD_CLR(READFD, &fdsr);
854 FD_CLR(READFD, &fdsr);
/freebsd-13-stable/usr.sbin/syslogd/
H A Dsyslogd.c546 fd_set *fdsr = NULL; local
805 fdsr = (fd_set *)calloc(howmany(fdsrmax+1, NFDBITS),
806 sizeof(*fdsr));
807 if (fdsr == NULL)
820 free(fdsr);
824 bzero(fdsr, howmany(fdsrmax+1, NFDBITS) *
825 sizeof(*fdsr));
829 FD_SET(sl->sl_socket, fdsr);
831 i = select(fdsrmax + 1, fdsr, NULL, NULL,
849 if (FD_ISSET(sl->sl_socket, fdsr))
[all...]

Completed in 118 milliseconds