spin/
lib.rs

1#![crate_type = "lib"]
2#![warn(missing_docs)]
3
4//! Synchronization primitives based on spinning
5
6#![no_std]
7
8#[cfg(test)]
9#[macro_use]
10extern crate std;
11
12pub use mutex::*;
13pub use rw_lock::*;
14pub use once::*;
15
16mod mutex;
17mod rw_lock;
18mod once;