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

/freebsd-11-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-11-stable/usr.sbin/syslogd/
H A Dsyslogd.c532 fd_set *fdsr = NULL; local
782 fdsr = (fd_set *)calloc(howmany(fdsrmax+1, NFDBITS),
783 sizeof(*fdsr));
784 if (fdsr == NULL)
797 free(fdsr);
801 bzero(fdsr, howmany(fdsrmax+1, NFDBITS) *
802 sizeof(*fdsr));
806 FD_SET(sl->sl_socket, fdsr);
808 i = select(fdsrmax + 1, fdsr, NULL, NULL,
826 if (FD_ISSET(sl->sl_socket, fdsr))
[all...]

Completed in 107 milliseconds