ariel_os::thread::thread_flagsFunction wait_one
pub fn wait_one(mask: u16) -> u16
Available on crate feature threading
only.
Expand description
Waits until any flag in mask
is set for the current thread.
Compared to wait_any
, this returns and clears only one flag
from the mask.
ยงPanics
Panics if this is called outside of a thread context.