Searched refs:poll_fds (Results 1 – 1 of 1) sorted by relevance
317 tools::auto_array< struct pollfd > poll_fds(new struct pollfd[m_nfds]); in mux() local319 poll_fds[i].fd = m_fds[i]; in mux()320 poll_fds[i].events = POLLIN; in mux()326 while (!terminate && (ret = safe_poll(poll_fds.get(), 2, 250)) == 0) {} in mux()329 if (poll_fds[i].events == 0) in mux()332 if (poll_fds[i].revents & POLLHUP) { in mux()335 poll_fds[i].events = 0; in mux()339 } else if (poll_fds[i].revents & (POLLIN | POLLRDNORM | POLLRDBAND | in mux()341 (void)read_one(i, poll_fds[i].fd, m_buffers[i], true); in mux()