pub type ReentrantMutex<T> = ReentrantMutex<TracingWrapper<RawMutex>, RawThreadId, T>;
Expand description

Dependency tracking reentrant mutex. See: parking_lot::ReentrantMutex.

Note: due to the way dependencies are tracked, this mutex can only be acquired directly after itself. Acquiring any other mutex in between introduces a dependency cycle, and will therefore be rejected.

Aliased Type§

struct ReentrantMutex<T> { /* private fields */ }