Home
last modified time | relevance | path

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

/dragonfly/libexec/rbootd/
H A Drbootd.c66 int c, fd, omask, maxfds; in main() local
209 maxfds = fd + 1; in main()
220 nsel = select(maxfds, &r, NULL, NULL, NULL); in main()
224 nsel = select(maxfds, &r, NULL, NULL, &timeout); in main()
/dragonfly/usr.bin/window/
H A Dwwiomux.c70 static nfds_t maxfds = 0; in wwiomux() local
87 if (maxfds <= ++nfd) { /* One more for the fd=0 case below */ in wwiomux()
96 maxfds = 0; in wwiomux()
100 maxfds = nfd; in wwiomux()
/dragonfly/crypto/openssh/
H A Dssh-agent.c1815 after_poll(struct pollfd *pfd, size_t npfd, u_int maxfds) in after_poll() argument
1840 if (npfd > maxfds) { in after_poll()
1842 "skipping accept", activefds, maxfds); in after_poll()
1869 prepare_poll(struct pollfd **pfdp, size_t *npfdp, int *timeoutp, u_int maxfds) in prepare_poll() argument
1899 if (npfd > maxfds) { in prepare_poll()
1901 "skipping arming listener", npfd, maxfds); in prepare_poll()
2020 u_int maxfds; in main() local
2144 maxfds = rlim.rlim_cur - SSH_AGENT_MIN_FDS; in main()
2259 prepare_poll(&pfd, &npfd, &timeout, maxfds); in main()
2270 after_poll(pfd, npfd, maxfds); in main()