Searched refs:poll_fds (Results 1 – 1 of 1) sorted by relevance
202 struct pollfd poll_fds[1]; in threadLoop() local210 memset(&poll_fds, 0, sizeof(poll_fds)); in threadLoop()213 poll_fds[0].fd = listen_fd_; in threadLoop()214 poll_fds[0].events = POLLIN; in threadLoop()216 poll_fds[0].fd = data_fd_; in threadLoop()217 poll_fds[0].events = POLLRDHUP | POLLIN; in threadLoop()220 int poll_res = poll(poll_fds, NELEM(poll_fds), 50); in threadLoop()230 if (poll_fds[0].revents) { in threadLoop()231 if (poll_fds[0].fd == listen_fd_) { in threadLoop()244 if (poll_fds[0].fd == data_fd_) { in threadLoop()[all …]