Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
vendor
/
spin-0.5.2
/
src
/
lib.rs
blob: 6e876bf5cdc0f095696c23f0ba42e058bfbbd930 [
file
] [
log
] [
blame
] [
edit
]
#![
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
rw_lock
::*;
pub
use
once
::*;
mod
mutex
;
mod
rw_lock
;
mod
once
;