// ---------------- [ File: bitcoin-sync/src/types.rs ]
crateix!;
/**
| Wrapped mutex: supports recursive
| locking, but no waiting
|
| TODO: We should move away from using
| the recursive lock by default.
|
*/
pub type RecursiveMutex<T> = ;
/**
| Wrapped mutex: supports waiting but
| not recursive locking
|
*/
pub type WrappedMutex = ;
pub type DebugLock<'a, MutexArg> =
;