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