diff options
| author | Aaron Turon <aturon@mozilla.com> | 2014-06-30 17:22:40 -0700 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2014-06-30 22:49:18 -0700 |
| commit | f7bb31a47a11ea85535024965432bcef90f407f7 (patch) | |
| tree | 68cc47670311a42d3652edca451676e277b63b24 /src/libstd/sync | |
| parent | 8bc286f9987963bd40465905a2c89098f0e10601 (diff) | |
| download | rust-f7bb31a47a11ea85535024965432bcef90f407f7.tar.gz rust-f7bb31a47a11ea85535024965432bcef90f407f7.zip | |
libstd: set baseline stability levels.
Earlier commits have established a baseline of `experimental` stability for all crates under the facade (so their contents are considered experimental within libstd). Since `experimental` is `allow` by default, we should use the same baseline stability for libstd itself. This commit adds `experimental` tags to all of the modules defined in `std`, and `unstable` to `std` itself.
Diffstat (limited to 'src/libstd/sync')
| -rw-r--r-- | src/libstd/sync/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/sync/mod.rs b/src/libstd/sync/mod.rs index 5f45ce25502..cc32818baa4 100644 --- a/src/libstd/sync/mod.rs +++ b/src/libstd/sync/mod.rs @@ -15,6 +15,8 @@ //! and/or blocking at all, but rather provide the necessary tools to build //! other types of concurrent primitives. +#![experimental] + pub use core_sync::{atomics, deque, mpmc_bounded_queue, mpsc_queue, spsc_queue}; pub use core_sync::{Arc, Weak, Mutex, MutexGuard, Condvar, Barrier}; pub use core_sync::{RWLock, RWLockReadGuard, RWLockWriteGuard}; |
