k-lock
A mutual exclusion primitive useful for protecting shared data
This mutex will block threads waiting for the lock to become available. The
mutex can be created via a [new] constructor. Each mutex has a type parameter
which represents the data that it is protecting. The data can only be accessed
through the RAII guards returned from [lock] and [try_lock], which
guarantees that the data is only ever accessed when the mutex is locked.
Difference from std::sync::Mutex
16 threads, short critical section expression: *mutex.lock() += 1;
Mac OS
This lock is not optimized for Mac OS at this time. The quick way to lock on
Mac OS is via pthread_mutex, which is not currently implemented in k-lock. If
you need your mutex to perform well on Mac OS, you need to use std::sync::Mutex.
AMD x86_64
AWS c7g.2xlarge aarch64
Thread count is on the X axis.
About
This mutex is optimized for brief critical sections. It has short spin cycles to prevent overwork, and it aggressively wakes multiple waiters per unlock.
If there is concern about possible panic in a critical section, std::sync::Mutex
is the appropriate choice.
If critical sections are more than a few nanoseconds long, std::sync::Mutex
may be better. As always, profiling and measuring is important.
Much of this mutex implementation and its documentation is adapted with humble
gratitude from the venerable std::sync::Mutex.
Poisoning
The mutex in this module does not implement poisoning.
This means that the [lock] and [try_lock] methods return a lock, whether
a mutex has been poisoned or not. If a panic can put your program in an invalid
state, you need to ensure that a possibly invalid invariant is not witnessed.
In these cases you should strongly consider using std::sync::Mutex.
It is expected that most uses of this lock will work with brief critical sections that do not expose a significant risk of panic.
Examples
use Arc;
use thread;
use channel;
use Mutex;
const N: usize = 10;
// Spawn a few threads to increment a shared variable (non-atomically), and
// let the main thread know once all increments are done.
//
// Here we're using an Arc to share memory among threads, and the data inside
// the Arc is protected with a mutex.
let data = new;
let = channel;
for _ in 0..N
rx.recv.unwrap;
To unlock a mutex guard sooner than the end of the enclosing scope, either create an inner scope or drop the guard manually.
use Arc;
use thread;
use Mutex;
const N: usize = 3;
let data_mutex = new;
let res_mutex = new;
let mut threads = Vecwith_capacity;
.for_each;
let mut data = data_mutex.lock;
// This is the result of some important and long-ish work.
let result = data.iter.fold;
data.push;
// We drop the `data` explicitly because it's not necessary anymore and the
// thread still has work to do. This allow other threads to start working on
// the data immediately, without waiting for the rest of the unrelated work
// to be done here.
//
// It's even more important here than in the threads because we `.join` the
// threads after that. If we had not dropped the mutex guard, a thread could
// be waiting forever for it, causing a deadlock.
// As in the threads, a block could have been used instead of calling the
// `drop` function.
drop;
// Here the mutex guard is not assigned to a variable and so, even if the
// scope does not end after this line, the mutex is still released: there is
// no deadlock.
*res_mutex.lock += result;
threads.into_iter.for_each;
assert_eq!;