HomeSort by: relevance | last modified time | path
    Searched defs:fdmax (Results 1 - 4 of 4) sorted by relevancy

  /src/usr.sbin/sdpd/
sdpd.h 113 int fdmax; /* descriptor max index */ member in struct:server
  /src/lib/libc/rpc/
svc_fdset.c 65 int fdmax; member in struct:svc_fdset
102 fprintf(stderr, "%p[%d] fd_set<", fds->fdset, fds->fdmax);
103 for (int i = 0; i <= fds->fdmax; i++) {
146 while (fds->fdmax >= 0 && !FD_ISSET(fds->fdmax, fds->fdset))
147 fds->fdmax--;
152 svc_maxfd = __svc_fdset.fdmax;
340 fds->fdmax = -1;
356 if (fd > fds->fdmax)
357 fds->fdmax = fd
    [all...]
svc.c 214 int sock, *fdmax; local in function:__xprt_do_unregister
228 fdmax = svc_fdset_getmax();
229 if (fdmax == NULL || sock < *fdmax)
232 for ((*fdmax)--; *fdmax >= 0; (*fdmax)--)
233 if (__svc_xports[*fdmax])
svc_vc.c 753 int i, ncleaned, *fdmax; local in function:__svc_clean_idle
762 fdmax = svc_fdset_getmax();
763 if (fdmax == NULL)
765 for (i = ncleaned = 0; i <= *fdmax; i++) {

Completed in 39 milliseconds