Lines Matching defs:ppoll
10 /// [`ppoll`](fn.ppoll.html) functions to specify the events of interest
13 /// After a call to `poll` or `ppoll`, the events that occurred can be
34 /// Returns the events that occurred in the last call to `poll` or `ppoll`. Will only return
40 /// Returns if any of the events of interest occured in the last call to `poll` or `ppoll`. Will
50 /// Returns if all the events of interest occured in the last call to `poll` or `ppoll`. Will
78 /// These flags define the different events that can be monitored by `poll` and `ppoll`
169 /// `ppoll()` allows an application to safely wait until either a file
173 /// `ppoll` behaves like `poll`, but let you specify what signals may interrupt it
174 /// with the `sigmask` argument. If you want `ppoll` to block indefinitely,
177 /// so in that case `ppoll` differs from `poll` only in the precision of the
181 pub fn ppoll(
190 libc::ppoll(fds.as_mut_ptr() as *mut libc::pollfd,