Home | History | Annotate | Download | only in dist

Lines Matching refs:numfd

112 	int numfd;
142 numfd = 0;
146 if (handler->fd != -1 && numfd < MAX_NETIO_FDS) {
147 fds[numfd].fd = handler->fd;
148 fds[numfd].events = 0;
149 fds[numfd].revents = 0;
150 handler->pfd = numfd;
152 fds[numfd].events |= POLLIN;
155 fds[numfd].events |= POLLOUT;
157 numfd++;
193 rc = ppoll(fds, numfd, (have_timeout?&minimum_timeout:NULL), sigmask);
196 rc = poll(fds, numfd, (have_timeout?minimum_timeout.tv_sec*1000+