Crate hybrid_lock

Crate hybrid_lock 

Source
Expand description

Hybrid locking, or parking_lot::RwLock with support for optimistic locking.

See the paper for details.

Structsยง

HybridLock
A hybrid lock.
HybridRwLockReadGuard
RAII structure used to release the shared read access of a lock when dropped.
HybridRwLockWriteGuard
RAII structure used to release the exclusive write access of a lock when dropped.