Expand description
Provides a simple mutex that does not support blocking or poisoning, but is faster and simpler than the mutex in stdlib.
Structsยง
- TryMutex
- A mutual exclusion primitive that does not support blocking or poisoning. This results in a simpler and faster implementation.
- TryMutex
Guard - A RAII scoped lock on a
TryMutex
. When this this structure is dropped, the mutex will be unlocked.