[][src]Function linux::syscall::rt_sigtimedwait

pub fn rt_sigtimedwait(
    set: &sigset_t,
    info: &mut siginfo_t,
    timeout: Option<&timespec>
) -> c_int

Suspends the thread until a certain signal occurs.

[argument, set] The set of signals to wait for.

[argument, info] Place where information about the signal will be stored.

[argument, timeout] Optional timeout.

= See also

  • link:man:rt_sigtimedwait(2)