Maintenance

cooptex

cooptex provides deadlock-free Mutexes. The [CoopMutex::lock] method wraps the [std::sync::Mutex] return value with a Result that will request the caller to drop other held locks so another thread could make progress. This behavior is easily accomplished by using the [retry_loop] function.

```rust use cooptex::*; let a = CoopMutex::new(42); let b = CoopMutex::new(43);

retryloop(|| { let alock = a.lock()?.unwrap(); let block = b.lock()?.unwrap(); asserteq!(*alock + *block, 85); Ok(()) }); ```

Guarantees

This crate aims to guarantee that multiple threads cannot possibly deadlock by acquiring locks.

The crate is still in early development, so there may be cases that aren't covered. Please open an issue if you can reproduce a deadlock.

Non-Guarantees

This crate allows the following potentially undesired behavior:

License: MIT