Home
last modified time | relevance | path

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

/illumos-gate/usr/src/test/libc-tests/tests/select/
H A Dselect_test.c56 int null, zero, maxfd = -1, nfds; in main() local
104 maxfd = i; in main()
118 if (select(maxfd + 1, sread, swrite, serr, &tv) == -1) in main()
/illumos-gate/usr/src/cmd/fs.d/
H A Dumount.c575 int maxfd = OPEN_MAX; in parumount() local
600 maxfd = (int)rl.rlim_cur; in parumount()
608 maxfd = (maxfd / 2) - 6; /* 6 takes care of temporary */ in parumount()
610 if (maxfd < maxrun) in parumount()
611 maxrun = maxfd; in parumount()
H A Dmount.c916 int maxfd = OPEN_MAX; in parmount() local
934 maxfd = (int)rl.rlim_cur; in parmount()
942 maxfd = (maxfd / 2) - 6; /* 6 takes care of temporary */ in parmount()
944 if (maxfd < maxrun) in parmount()
945 maxrun = maxfd; in parmount()
/illumos-gate/usr/src/uts/common/fs/fd/
H A Dfdops.c111 int minfd, maxfd, modoff, error = 0; in fdread() local
143 maxfd = (uiop->uio_offset + uiop->uio_resid - 1)/FDSDSIZE; in fdread()
148 for (i = minfd; i < MIN(maxfd, nentries); i++) { in fdread()
/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/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/gss_mechs/mech_krb5/krb5/os/
H A Dsendto_kdc.c126 int maxfd; in krb5int_debug_fprint() local
188 maxfd = va_arg(args, int); in krb5int_debug_fprint()
190 for (i = 0; i < maxfd; i++) { in krb5int_debug_fprint()
/illumos-gate/usr/src/uts/common/os/
H A Dfio.c338 flist_grow(int maxfd) in flist_grow() argument
345 for (newcnt = 1; newcnt <= maxfd; newcnt = (newcnt << 1) | 1) in flist_grow()