Expand description
A Rust idiomatic Windows Kernel Driver FAST_MUTEX type which protects the inner type T
Structsยง
- A thread safe mutex implemented through acquiring a
FAST_MUTEX
in the Windows kernel. - A RAII scoped guard for the inner data protected by the mutex. Once this guard is given out, the protected data may be safely mutated by the caller as we guarantee exclusive access via Windows Kernel Mutex primitives.