Home
last modified time | relevance | path

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

/titanic_50/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)
/titanic_50/usr/src/cmd/powertop/common/
H A Dpowertop.c103 struct pollfd pollset; in main() local
267 pollset.fd = STDIN_FILENO; in main()
268 pollset.events = POLLIN; in main()
291 if (poll(&pollset, (nfds_t)1, in main()
/titanic_50/usr/src/cmd/rexd/
H A Drpc.rexd.c133 pollfd_t *pollset = NULL; in main() local
314 pollset = realloc(pollset, in main()
322 (void) memcpy(pollset, svc_pollfd, in main()
327 switch (pollretval = poll(pollset, npollfds, -1)) { in main()
346 HelperRead(pollset, npollfds, &pollretval); in main()
352 svc_getreq_poll(pollset, pollretval); in main()
/titanic_50/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);
/titanic_50/usr/src/cmd/prstat/
H A Dprstat.c1377 struct pollfd pollset; in main() local
1587 pollset.fd = STDIN_FILENO; in main()
1588 pollset.events = POLLIN; in main()
1670 if (poll(&pollset, (nfds_t)1, timeout) > 0) { in main()