1 2 3 4 5 6 7 8
//! Synchronization primitives
#![stable(feature = "rust1", since = "1.0.0")]
pub mod atomic;
mod exclusive;
#[unstable(feature = "exclusive_wrapper", issue = "98407")]
pub use exclusive::Exclusive;
1 2 3 4 5 6 7 8
//! Synchronization primitives
#![stable(feature = "rust1", since = "1.0.0")]
pub mod atomic;
mod exclusive;
#[unstable(feature = "exclusive_wrapper", issue = "98407")]
pub use exclusive::Exclusive;