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

/freebsd-12-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-12-stable/usr.sbin/syslogd/
H A Dsyslogd.c534 fd_set *fdsr = NULL; local
784 fdsr = (fd_set *)calloc(howmany(fdsrmax+1, NFDBITS),
785 sizeof(*fdsr));
786 if (fdsr == NULL)
799 free(fdsr);
803 bzero(fdsr, howmany(fdsrmax+1, NFDBITS) *
804 sizeof(*fdsr));
808 FD_SET(sl->sl_socket, fdsr);
810 i = select(fdsrmax + 1, fdsr, NULL, NULL,
828 if (FD_ISSET(sl->sl_socket, fdsr))
[all...]

Completed in 99 milliseconds