Lines Matching refs:maxfd
169 long maxfd; in descriptors_assert() local
181 maxfd = sysconf(_SC_OPEN_MAX); in descriptors_assert()
182 if (maxfd == -1) { in descriptors_assert()
188 maxfd = 16384; in descriptors_assert()
190 for (fd = 0; fd <= maxfd; fd++) { in descriptors_assert()
1070 int fd, maxfd, ret; in main_loop() local
1083 maxfd = fd = proto_descriptor(cfg->hc_controlconn); in main_loop()
1092 maxfd = MAX(fd, maxfd); in main_loop()
1100 maxfd = MAX(fd, maxfd); in main_loop()
1107 maxfd = MAX(fd, maxfd); in main_loop()
1113 PJDLOG_ASSERT(maxfd + 1 <= (int)FD_SETSIZE); in main_loop()
1114 ret = select(maxfd + 1, &rfds, NULL, NULL, &seltimeout); in main_loop()