Expand description
Naive implementation of spin based locking mechanisms
This module provides implementations for locking mechanisms required.
§Acknowledgement
This implementation is largely inspired by the book “Rust Atomics and Locks” by Mara Bos.
Structs§
- Read
Lock Guard - Read guard for the
RwSpinLock
- RwSpin
Lock - A spinlock based, read-write lock which favours writers over readers
- Write
Lock Guard - Write guard for the
RwSpinLock