Home
last modified time | relevance | path

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

/freebsd/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()
/freebsd/lib/libpmc/pmu-events/
H A Djevents.c1367 int maxfds; in main() local
1417 maxfds = get_maxfds(); in main()
1418 rc = nftw(ldirname, preprocess_arch_std_files, maxfds, 0); in main()
1422 rc = nftw(ldirname, process_one_file, maxfds, 0); in main()
1428 rc = nftw(ldirname, preprocess_arch_std_files, maxfds, 0); in main()
1432 rc = nftw(ldirname, process_one_file, maxfds, 0); in main()
/freebsd/crypto/openssh/
H A Dssh-agent.c2061 after_poll(struct pollfd *pfd, size_t npfd, u_int maxfds) in after_poll() argument
2086 if (npfd > maxfds) { in after_poll()
2088 "skipping accept", activefds, maxfds); in after_poll()
2115 prepare_poll(struct pollfd **pfdp, size_t *npfdp, struct timespec *timeoutp, u_int maxfds) in prepare_poll() argument
2145 if (npfd > maxfds) { in prepare_poll()
2147 "skipping arming listener", npfd, maxfds); in prepare_poll()
2272 u_int maxfds; in main() local
2431 maxfds = rlim.rlim_cur - SSH_AGENT_MIN_FDS; in main()
2635 prepare_poll(&pfd, &npfd, &timeout, maxfds); in main()
2647 after_poll(pfd, npfd, maxfds); in main()