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

/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Dutil.c71 struct pollfd *poll_fds = NULL; variable in typeref:struct:pollfd
166 if (poll_fds != NULL) {
167 free(poll_fds);
168 poll_fds = NULL;
178 if (poll_fds[n].fd == fd)
179 return (&(poll_fds[n]));
192 if ((p = realloc(poll_fds,
197 poll_fds = p;
200 poll_fds[num_pollfds + i].fd = -1;
202 p = &poll_fds[num_pollfd
[all...]
H A Dinetd_impl.h243 extern struct pollfd *poll_fds;
H A Dinetd.c3511 pret = poll(poll_fds, num_pollfds, timeout);
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/snowbird/lib/libctsmc/
H A Dlibctsmc.c117 struct pollfd poll_fds[1]; local
119 poll_fds[0].fd = fd;
120 poll_fds[0].events = POLLIN|POLLPRI;
121 poll_fds[0].revents = 0;
129 poll_rc = poll(poll_fds, 1, poll_time);
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/snowbird/envmond/
H A Dpicldr.c548 struct pollfd poll_fds[1]; local
577 poll_fds[0].fd = smcfd;
578 poll_fds[0].events = POLLIN|POLLPRI;
579 poll_fds[0].revents = 0;
598 poll_rc = poll(poll_fds, 1, -1); /* poll forever */
/illumos-gate/usr/src/cmd/init/
H A Dinit.c529 static struct pollfd poll_fds[1]; variable in typeref:struct:pollfd
530 static int poll_nfds = 0; /* poll_fds is uninitialized */
868 ret = poll(poll_fds, poll_nfds,
872 contract_event(&poll_fds[0]);
4207 poll_fds[0].fd = fd;
4208 poll_fds[0].events = POLLIN;

Completed in 61 milliseconds