Expand description
A Rust idiomatic Windows Kernel Driver KMUTEX type which protects the inner type T
Structsยง
- A thread safe mutex implemented through acquiring a KMUTEX 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.