Add ability to assert a lock is not held in DEBUG_LOCKORDER

This commit is contained in:
Matt Corallo
2017-01-17 17:42:46 -05:00
parent 0343676ce3
commit 2b4b34503f
2 changed files with 13 additions and 0 deletions

View File

@@ -155,6 +155,16 @@ void AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine,
abort();
}
void AssertLockNotHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs)
{
for (const std::pair<void*, CLockLocation>& i : *lockstack) {
if (i.first == cs) {
fprintf(stderr, "Assertion failed: lock %s held in %s:%i; locks held:\n%s", pszName, pszFile, nLine, LocksHeld().c_str());
abort();
}
}
}
void DeleteLock(void* cs)
{
if (!lockdata.available) {