[go: up one dir, main page]

loom 0.3.1

Permutation testing for concurrent code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Mock implementation of `std::sync`.

mod arc;
pub mod atomic;
mod condvar;
mod mutex;
mod notify;
mod rwlock;

pub use self::arc::Arc;
pub use self::condvar::{Condvar, WaitTimeoutResult};
pub use self::mutex::{Mutex, MutexGuard};
pub use self::notify::Notify;
pub use self::rwlock::{RwLock, RwLockReadGuard, RwLockWriteGuard};

pub use std::sync::{LockResult, TryLockResult};