atomic_sync 0.2.0

Atomic-based synchronization implementing traits in `abs_sync`
1
2
3
4
5
6
7
8
9
10
11
//! This module contains the implementation of a spinning reader-writer lock
//! designed with first-in-first-out (FIFO) fairness among its contenders.

mod acquire_;
mod rwlock_;
mod reader_;
mod upgrade_;
mod writer_;

pub use rwlock_::SpinningRwLock;
pub use acquire_::Acquire;