pub fn wake(uaddr: &AtomicU32, flags: Flags, val: u32) -> Result<usize>
Expand description
Equivalent to syscall(SYS_futex, uaddr, FUTEX_WAKE, val, NULL, NULL, 0)
This is a very low-level feature for implementing synchronization primitives. See the references links.