saa 5.4.0

Word-sized low-level synchronization primitives providing both asynchronous and synchronous interfaces.
Documentation
#![deny(missing_docs, clippy::all, clippy::pedantic)]
#![doc = include_str!("../README.md")]

pub mod barrier;
pub use barrier::Barrier;

pub mod gate;
pub use gate::Gate;

pub mod lock;
pub use lock::Lock;

#[cfg(all(feature = "lock_api", not(feature = "loom")))]
pub mod lock_api;
#[cfg(all(feature = "lock_api", not(feature = "loom")))]
pub use lock_api::{
    Mutex, MutexGuard, RwLock, RwLockReadGuard, RwLockWriteGuard, lock_async, read_async,
    write_async,
};

pub mod pager;
pub use pager::Pager;

pub mod semaphore;
pub use semaphore::Semaphore;

mod opcode;
mod sync_primitive;
mod wait_queue;

#[cfg(test)]
mod tests;