Lines Matching defs:poll
18 #include <poll.h>
22 *_XOPEN_SOURCE added the ability to not only poll for data coming in or out
23 * but now also the ability to poll for high priority input and output. Though
33 * The DECNet Protocol can set the poll in priority flag, POLLRDBAND.
34 * ATM as well as a whole bunch of other protocols can set the poll out priority flag,
37 * MIPS and SPARC likely assigned the new XOPEN poll out event flags in UNIX well before
48 * Only the Priority poll out flag can be mapped back to portable because MIPS
69 * in DECNet. Also, the poll system call and device poll
107 extern int poll(struct pollfd *, nfds_t, long);
109 int WRAP(poll)(struct pollfd *fds, nfds_t nfds, long timeout)
117 ret = REAL(poll)(fds, nfds, timeout);