Structs§
- Mapped
Reentrant Mutex Guard - An RAII mutex guard returned by
ReentrantMutexGuard::map, which can point to a subfield of the protected data. - RawReentrant
Mutex - A raw mutex type that wraps another raw mutex to provide reentrancy.
- Reentrant
Mutex - A mutex which can be recursively locked by a single thread.
- Reentrant
Mutex Guard - An RAII implementation of a “scoped lock” of a reentrant mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.
Traits§
- GetThread
Id - Helper trait which returns a non-zero thread ID.