1
0
mirror of https://github.com/bspeice/qadapt synced 2025-03-13 10:51:31 -04:00
qadapt/qadapt-spin/src/lib.rs
2018-12-16 23:38:49 -05:00

19 lines
244 B
Rust

#![crate_type = "lib"]
#![warn(missing_docs)]
//! Synchronization primitives based on spinning
#![no_std]
#[cfg(test)]
#[macro_use]
extern crate std;
pub use mutex::*;
pub use once::*;
pub use rw_lock::*;
mod mutex;
mod once;
mod rw_lock;