wake_one

Function wake_one 

Source
pub unsafe fn wake_one(addr: *const u32)
Expand description

Wake a single waiter blocked on addr.

Wakes are best-effort: this may do nothing if there are no waiters, and a wake may be lost if it races with a waiter that has not yet parked.

ยงSafety

addr must be a valid address used by waiters (typically &WakeCell.seq).