#mutex #deadlock #single-thread #no-alloc

no-std one-shot-mutex

One-shot locks that panic instead of (dead)locking on contention

2 releases

0.1.1 Apr 4, 2024
0.1.0 Apr 3, 2024

#86 in No standard library

Download history 464/week @ 2024-04-02 957/week @ 2024-04-09 218/week @ 2024-04-16 147/week @ 2024-04-23

1,786 downloads per month
Used in 2 crates (via hermit-sync)

MIT/Apache

17KB
356 lines

one-shot-mutex

Crates.io docs.rs CI

One-shot locks that panic instead of (dead)locking on contention.

These locks allow no contention and panic instead of blocking on lock if they are already locked. This is useful in situations where contention would be a bug, such as in single-threaded programs that would deadlock on contention.

use one_shot_mutex::OneShotMutex;

static X: OneShotMutex<i32> = OneShotMutex::new(42);

let x = X.lock();

// This panics instead of deadlocking.
// let x2 = X.lock();

// Once we unlock the mutex, we can lock it again.
drop(x);
let x = X.lock();

For API documentation, see the docs.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~160KB