Further-enforce lockordering by enforcing directly after TRY_LOCKs

pull/9674/head
Matt Corallo 8 years ago
parent 2a962d4540
commit 618ee9249b

@ -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…
Cancel
Save