0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00

Merge pull request #1232 from TheBlueMatt/lockcontention

Fix DEBUG_LOCKCONTENTION
This commit is contained in:
Gregory Maxwell 2012-05-09 03:55:02 -07:00
commit 92dca80975

View file

@ -217,9 +217,11 @@ public:
{
printf("LOCKCONTENTION: %s\n", pszName);
printf("Locker: %s:%d\n", pszFile, nLine);
}
#endif
lock.lock();
#ifdef DEBUG_LOCKCONTENTION
}
#endif
}
}