Further-enforce lockordering by enforcing directly after TRY_LOCKs
This commit is contained in:
parent
2a962d4540
commit
618ee9249b
1 changed files with 11 additions and 13 deletions
|
@ -110,7 +110,6 @@ static void push_lock(void* c, const CLockLocation& locklocation, bool fTry)
|
||||||
|
|
||||||
(*lockstack).push_back(std::make_pair(c, locklocation));
|
(*lockstack).push_back(std::make_pair(c, locklocation));
|
||||||
|
|
||||||
if (!fTry) {
|
|
||||||
BOOST_FOREACH (const PAIRTYPE(void*, CLockLocation) & i, (*lockstack)) {
|
BOOST_FOREACH (const PAIRTYPE(void*, CLockLocation) & i, (*lockstack)) {
|
||||||
if (i.first == c)
|
if (i.first == c)
|
||||||
break;
|
break;
|
||||||
|
@ -125,7 +124,6 @@ static void push_lock(void* c, const CLockLocation& locklocation, bool fTry)
|
||||||
if (lockdata.lockorders.count(p2))
|
if (lockdata.lockorders.count(p2))
|
||||||
potential_deadlock_detected(p1, lockdata.lockorders[p2], lockdata.lockorders[p1]);
|
potential_deadlock_detected(p1, lockdata.lockorders[p2], lockdata.lockorders[p1]);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pop_lock()
|
static void pop_lock()
|
||||||
|
|
Loading…
Reference in a new issue