os/sync/
mod.rs

1//! 同步原语
2//!
3//! 向其它内核模块提供基本的锁和同步原语
4//! 包括自旋锁、睡眠锁、中断保护等
5mod intr_guard;
6mod mutex;
7mod raw_spin_lock;
8mod raw_spin_lock_without_guard;
9mod spin_lock;
10
11pub use intr_guard::*;
12pub use mutex::*;
13pub use raw_spin_lock::*;
14pub use raw_spin_lock_without_guard::*;
15pub use spin_lock::*;