Lines Matching full:poll
6 poll - select(2)-based poll() emulation function for BSD systems.
9 #include "poll.h"
18 int poll (struct pollfd *pArray, unsigned long n_fds, int timeout)
22 This file, and the accompanying "poll.h", implement the System V
23 poll(2) system call for BSD systems (which typically do not provide
24 poll()). Poll() provides a method for multiplexing input and output
27 differ from those of poll(), poll() can be readily emulated in terms
111 Map the poll() structures into the file descriptor sets required in map_poll_spec()
154 Map the poll() timeout value into a select() timeout. The possible in map_timeout()
155 values of the poll() timeout value, and their meanings, are: in map_timeout()
256 /* Map the poll() file descriptor list in the select() data structures. */ in xserver_poll()
261 /* Map the poll() timeout value in the select() timeout structure. */ in xserver_poll()