Module wasm::rw_spinlock
source · 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 guard for the
RwSpinLock
- A spinlock based, read-write lock which favours writers over readers
- Write guard for the
RwSpinLock