Function std::sys::unix::futex::futex_wake

source ·
pub fn futex_wake(futex: &AtomicU32) -> bool
Expand description

Wake up one thread that’s blocked on futex_wait on this futex.

Returns true if this actually woke up such a thread, or false if no thread was waiting on this futex.

On some platforms, this always returns false.