mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-19 06:30:45 +02:00
Make sure the compile-time locking promises given via LockAnnotation:s hold also in practice at runtime (ifdef DEBUG_LOCKORDER)
This commit is contained in:
parent
3a809446b3
commit
de9b5dbca3
@ -311,6 +311,9 @@ struct SCOPED_LOCKABLE LockAnnotation
|
|||||||
template <typename Mutex>
|
template <typename Mutex>
|
||||||
explicit LockAnnotation(Mutex& mutex) EXCLUSIVE_LOCK_FUNCTION(mutex)
|
explicit LockAnnotation(Mutex& mutex) EXCLUSIVE_LOCK_FUNCTION(mutex)
|
||||||
{
|
{
|
||||||
|
#ifdef DEBUG_LOCKORDER
|
||||||
|
AssertLockHeld(mutex);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
~LockAnnotation() UNLOCK_FUNCTION() {}
|
~LockAnnotation() UNLOCK_FUNCTION() {}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user