blob: 38a5537724baf1515dd093e81794b71f622b4e99 [file] [log] [blame]
//! Futures-powered synchronization primitives.
#[cfg(feature = "std")]
mod mutex;
#[cfg(feature = "std")]
pub use self::mutex::{Mutex, MutexLockFuture, MutexGuard};
mod bilock;
#[cfg(any(test, feature = "bench"))]
pub use self::bilock::{BiLock, BiLockAcquire, BiLockGuard, ReuniteError};
#[cfg(not(any(test, feature = "bench")))]
pub(crate) use self::bilock::BiLock;