1//! # Kernel synchronization primitives 2 3#![cfg_attr(not(test), no_std)] 4#![allow(unsafe_code)] 5 6pub mod spin_lock;