1//! Synchronization primitives module 2//! 3//! This module provides various synchronization primitives for the Scarlet kernel, 4//! including the Waker mechanism for asynchronous task waiting and waking. 5 6pub mod waker; 7 8pub use waker::Waker;