1 //! Synchronization primitives based on spinning
2 
3 pub(crate) use mutex::*;
4 pub(crate) use once::Once;
5 
6 mod mutex;
7 mod once;
8