mirror of
https://github.com/bspeice/qadapt
synced 2025-03-13 10:51:31 -04:00
19 lines
244 B
Rust
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;
|