Searched refs:maxfd (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/
H A Dumount.c562 int maxfd = OPEN_MAX; local
587 maxfd = (int)rl.rlim_cur;
595 maxfd = (maxfd / 2) - 6; /* 6 takes care of temporary */
597 if (maxfd < maxrun)
598 maxrun = maxfd;
H A Dmount.c907 int maxfd = OPEN_MAX; local
925 maxfd = (int)rl.rlim_cur;
933 maxfd = (maxfd / 2) - 6; /* 6 takes care of temporary */
935 if (maxfd < maxrun)
936 maxrun = maxfd;
/illumos-gate/usr/src/uts/common/fs/fd/
H A Dfdops.c110 int minfd, maxfd, modoff, error = 0; local
142 maxfd = (uiop->uio_offset + uiop->uio_resid - 1)/FDSDSIZE;
147 for (i = minfd; i < MIN(maxfd, nentries); i++) {
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dos-ip.c1541 int i, rc, maxfd = 0; local
1569 if ( fds[i].lpoll_fd >= maxfd ) {
1570 maxfd = fds[i].lpoll_fd;
1577 ++maxfd;
1585 rc = iofns->liof_select( maxfd, &readfds, &writefds, NULL, tvp );
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dsendto_kdc.c126 int maxfd; local
188 maxfd = va_arg(args, int);
190 for (i = 0; i < maxfd; i++) {
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dutil.c1699 int maxfd; local
1707 maxfd = BITMAPBITS;
1709 maxfd = DtableSize;
1713 for (fd = 0; fd < maxfd; fd++)
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_mn_handlers.c181 int maxfd; local
198 maxfd = max(pout[0], perr[0]) + 1;
199 (void) select(maxfd, &rset, NULL, NULL, NULL);
/illumos-gate/usr/src/uts/common/os/
H A Dfio.c334 * Increase size of the fi_list array to accommodate at least maxfd.
338 flist_grow(int maxfd) argument
345 for (newcnt = 1; newcnt <= maxfd; newcnt = (newcnt << 1) | 1)

Completed in 87 milliseconds