Home
last modified time | relevance | path

Searched refs:maxfds (Results 1 – 3 of 3) sorted by relevance

/src/libexec/rbootd/
H A Drbootd.c62 int c, fd, omask, maxfds; in main() local
206 maxfds = fd + 1; in main()
217 nsel = select(maxfds, &r, NULL, NULL, NULL); in main()
221 nsel = select(maxfds, &r, NULL, NULL, &timeout); in main()
/src/lib/libpmc/pmu-events/
H A Djevents.c1343 int maxfds; in main() local
1393 maxfds = get_maxfds(); in main()
1394 rc = nftw(ldirname, preprocess_arch_std_files, maxfds, 0); in main()
1398 rc = nftw(ldirname, process_one_file, maxfds, 0); in main()
1404 rc = nftw(ldirname, preprocess_arch_std_files, maxfds, 0); in main()
1408 rc = nftw(ldirname, process_one_file, maxfds, 0); in main()
/src/crypto/openssh/
H A Dssh-agent.c2056 after_poll(struct pollfd *pfd, size_t npfd, u_int maxfds) in after_poll() argument
2081 if (npfd > maxfds) { in after_poll()
2083 "skipping accept", activefds, maxfds); in after_poll()
2110 prepare_poll(struct pollfd **pfdp, size_t *npfdp, struct timespec *timeoutp, u_int maxfds) in prepare_poll() argument
2140 if (npfd > maxfds) { in prepare_poll()
2142 "skipping arming listener", npfd, maxfds); in prepare_poll()
2261 u_int maxfds; in main() local
2397 maxfds = rlim.rlim_cur - SSH_AGENT_MIN_FDS; in main()
2560 prepare_poll(&pfd, &npfd, &timeout, maxfds); in main()
2572 after_poll(pfd, npfd, maxfds); in main()