]> git.lizzy.rs Git - rust.git/blob - src/libstd/sync/mod.rs
fix spacing issue in trpl/documentation doc
[rust.git] / src / libstd / sync / mod.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Useful synchronization primitives
12 //!
13 //! This module contains useful safe and unsafe synchronization primitives.
14 //! Most of the primitives in this module do not provide any sort of locking
15 //! and/or blocking at all, but rather provide the necessary tools to build
16 //! other types of concurrent primitives.
17
18 #![stable(feature = "rust1", since = "1.0.0")]
19
20 pub use alloc::arc::{Arc, Weak};
21 pub use core::atomic;
22
23 pub use self::barrier::{Barrier, BarrierWaitResult};
24 pub use self::condvar::{Condvar, StaticCondvar, CONDVAR_INIT};
25 pub use self::mutex::MUTEX_INIT;
26 pub use self::mutex::{Mutex, MutexGuard, StaticMutex};
27 pub use self::once::{Once, ONCE_INIT};
28 pub use sys_common::poison::{PoisonError, TryLockError, TryLockResult, LockResult};
29 pub use self::rwlock::{RwLockReadGuard, RwLockWriteGuard};
30 pub use self::rwlock::{RwLock, StaticRwLock, RW_LOCK_INIT};
31 pub use self::semaphore::{Semaphore, SemaphoreGuard};
32
33 pub mod mpsc;
34
35 mod barrier;
36 mod condvar;
37 mod mutex;
38 mod once;
39 mod rwlock;
40 mod semaphore;