//! Simple synchronization primitives based on OS semaphore.
pub use ;
pub use Once;
pub use Mutex;
///Alias to [SemMutex](mutex/struct.SemMutex.html) with default [Semaphore](sem/trait.Semaphore.html) implementation
pub type SemMutex = SemMutex;