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