Lines Matching refs:poll
80 [capture] poll() ---------> to wait for incoming packets
122 [transmission] poll() ---------> wait for free packets (optional)
487 The user can use poll (any other variant should apply too) to check if new
497 retval = poll(&pfd, 1, timeout);
500 then poll for frames.
523 The user can also use poll() to check if a buffer is available:
530 retval = poll(&pfd, 1, timeout);
570 2. Read/poll is at a block-level (as opposed to packet-level)
571 3. Added poll timeout to avoid indefinite user-space wait
770 #include <poll.h>
961 poll(&pfd, 1, -1);