3 releases (breaking)
0.2.0 | Aug 18, 2024 |
---|---|
0.1.0 | Jul 9, 2024 |
0.0.0 | Mar 27, 2024 |
#314 in Concurrency
106 downloads per month
31KB
556 lines
Sort Lock
A crate providing ordered locking. That is locks that will always lock in the same order regardless of the order in which the methods are called. This reduces deadlocks caused by cycles as one lock waits for another. In particular the following case cannot happen when exclusively using lock sorting:
- Thread A acquires
lock1
. - Thread B acquires
lock2
. - Thread A tries to acquire
lock2
but it is locked by thread B. - Thread B tries to acquire
lock1
but it is locked by thread A. - Neither thread can continue and will not unlock so a deadlock has occured.
With lock sorting this cannot occur as locks are always locked in the same order for both
threads. This is done by first requesting to lock each lock. Then, by placing the locks in a
tuple and calling the lock_all
method, the locks will be locked in the same order regardless
of their order in the tuple.
To allow for sorted locking, this crates provides two new types of lock:
SortMuted
- A sorted version ofMutex
.SortRwLock
- A sorted version ofRwLock
.
Examples
use sortlock::{SortMutex, LockGroup};
let lock1 = SortMutex::new("some value");
let lock2 = SortMutex::new("some other value");
// Here lock1 is locked then lock2.
let (guard1, guard2) = (lock1.lock(), lock2.lock()).lock_all();
println!("{}", *guard1);
println!("{}", *guard2);
// Unlock so we can lock again.
drop(guard1);
drop(guard2);
// Despite the order change the same is true here.
let (guard2, guard1) = (lock2.lock(), lock1.lock()).lock_all();
println!("{}", *guard1);
println!("{}", *guard2);
Feature Flags
To support no-std
environments this crate can fall back to using spin
's Mutex
and RwLock
types. This can be done by disabiling the std
feature.
Dependencies
~1MB
~21K SLoC