[][src]Function linux::syscall::futex_wake

pub fn futex_wake(addr: &AtomicInt, num: usize) -> c_int

Wakes processes sleeping on a futex.

[argument, addr] The address of the futex.

[argument, num] The number of processes to wake.

[return_value] Returns the number of processes woken or an error value.

= See also

  • link:man:futex(2) and FUTEX_WAKE therein