1#[cfg(all(test, feature = "loom-tests"))]
2pub use loom::{
3 sync::{Arc, Condvar, LockResult, Mutex, MutexGuard},
4 thread_local,
5};
6
7#[cfg(not(all(test, feature = "loom-tests")))]
8pub use std::{
9 sync::{Arc, Condvar, LockResult, Mutex, MutexGuard},
10 thread_local,
11};