Searched refs:tmp_pollfd (Results 1 - 1 of 1) sorted by relevance

/external/valgrind/main/auxprogs/
H A Dvalgrind-di-server.c1154 struct pollfd tmp_pollfd[M_CONNECTIONS]; local
1155 /* And a parallel array which maps entries in tmp_pollfd back to
1163 tmp_pollfd[j].fd = conn_state[i].conn_sd;
1164 tmp_pollfd[j].events = POLLIN /* | POLLHUP | POLLNVAL */;
1165 tmp_pollfd[j].revents = 0;
1170 res = poll(tmp_pollfd, j, 20/*ms*/ /* 0=return immediately. */ );
1184 if (tmp_pollfd[i].revents & POLLIN) {
1185 /* We have some activity on tmp_pollfd[i]. We need to

Completed in 255 milliseconds