Searched refs:read_fds (Results 1 – 4 of 4) sorted by relevance
| /dragonfly/games/hunt/huntd/ |
| HD | driver.c | 87 static fd_set read_fds; in main() local 141 read_fds = Fds_mask; in main() 144 nready = select(Num_fds, &read_fds, NULL, NULL, in main() 175 read_fds = Fds_mask; in main() 177 nready = select(Num_fds, &read_fds, NULL, NULL, in main() 187 Have_inp = read_fds; in main() 259 if (FD_ISSET(pp->p_fd, &read_fds)) { in main() 266 if (FD_ISSET(pp->p_fd, &read_fds)) { in main() 281 read_fds = Fds_mask; in main() 283 while ((ret = select(Num_fds, &read_fds, NULL, NULL, &linger)) < 0) { in main() [all …]
|
| /dragonfly/contrib/mdocml/ |
| HD | mandocd.c | 52 static int read_fds(int, int *); 58 read_fds(int clientfd, int *fds) in read_fds() function 201 while (state == 1 && (state = read_fds(clientfd, fds)) == 1) { in main()
|
| /dragonfly/contrib/dialog/ |
| HD | ui_getc.c | 175 fd_set read_fds; in check_inputs() local 184 FD_ZERO(&read_fds); in check_inputs() 190 FD_SET(fd, &read_fds); in check_inputs() 199 found = select(last_fd + 1, &read_fds, in check_inputs() 208 && FD_ISSET(fd, &read_fds)) { in check_inputs()
|
| /dragonfly/contrib/dhcpcd/src/ |
| HD | eloop.c | 1120 fd_set read_fds, write_fds; in eloop_run_pselect() local 1125 FD_ZERO(&read_fds); in eloop_run_pselect() 1132 FD_SET(e->fd, &read_fds); in eloop_run_pselect() 1144 n = pselect(maxfd + 1, &read_fds, &write_fds, NULL, ts, sigmask); in eloop_run_pselect() 1154 if (FD_ISSET(e->fd, &read_fds)) in eloop_run_pselect()
|