[][src]Function linux::syscall::epoll_pwait

pub fn epoll_pwait(
    epfd: c_int,
    events: &mut [epoll_event],
    timeout: c_int,
    sigmask: Option<&sigset_t>
) -> c_int

Waits on an epoll instance.

[argument, fd] The epoll instance.

[argument, events] The buffer into which events will be placed.

[argument, timeout] The timeout in milliseconds.

[argument, sigmask] A set of signals that will be masked during the operation.

[return_value] Returns success or an error value.

= See also

  • link:man:epoll_pwait(2)