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

/illumos-gate/usr/src/cmd/backup/dump/
H A Ddumpoptr.c85 pollfd_t pollset; local
120 pollset.fd = -1;
121 pollset.events = 0;
122 pollset.revents = 0;
124 pollset.fd = fileno(stdin);
125 pollset.events = POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND;
131 if (poll(&pollset, 1, -1) < 0) {
138 if (pollset.revents == 0)
/illumos-gate/usr/src/cmd/powertop/common/
H A Dpowertop.c101 struct pollfd pollset; local
265 pollset.fd = STDIN_FILENO;
266 pollset.events = POLLIN;
289 if (poll(&pollset, (nfds_t)1,
/illumos-gate/usr/src/cmd/ypcmd/
H A Dyppush.c693 pollfd_t *pollset = NULL; local
808 pollset = realloc(pollset,
817 (void) memcpy(pollset, svc_pollfd,
821 switch (pollret = poll(pollset, npollfds, MIN_GRACE * 1000)) {
836 svc_getreq_poll(pollset, pollret);
/illumos-gate/usr/src/cmd/rexd/
H A Drpc.rexd.c133 pollfd_t *pollset = NULL; local
314 pollset = realloc(pollset,
322 (void) memcpy(pollset, svc_pollfd,
327 switch (pollretval = poll(pollset, npollfds, -1)) {
346 HelperRead(pollset, npollfds, &pollretval);
352 svc_getreq_poll(pollset, pollretval);
/illumos-gate/usr/src/cmd/prstat/
H A Dprstat.c1377 struct pollfd pollset; local
1587 pollset.fd = STDIN_FILENO;
1588 pollset.events = POLLIN;
1670 if (poll(&pollset, (nfds_t)1, timeout) > 0) {

Completed in 53 milliseconds