]> git.lizzy.rs Git - rust.git/blob - library/core/src/sync/mod.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / library / core / src / sync / mod.rs
1 //! Synchronization primitives
2
3 #![stable(feature = "rust1", since = "1.0.0")]
4
5 pub mod atomic;
6 mod exclusive;
7 #[unstable(feature = "exclusive_wrapper", issue = "98407")]
8 pub use exclusive::Exclusive;