#[unsafe(no_mangle)]pub unsafe extern "C" fn ppoll(
fds: *mut pollfd,
nfds: nfds_t,
tmo_p: *const timespec,
sigmask: *const sigset_t,
) -> c_intExpand description
See https://pubs.opengroup.org/onlinepubs/9799919799/functions/ppoll.html.
Provides applications with a mechanism for multiplexing input/output over a set of file descriptors.
- The
tmo_pparameter is the timeout as represented by atimespecstruct. - Passing a null pointer for timeout is equivalent to
-1fortimeouttopoll.
Note: Uses epoll internally.