pub unsafe fn wake_all(addr: *const u32)Expand description
Wake all waiters 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).