| 128 | } |
| 129 | |
| 130 | std::string LocksHeld() |
| 131 | { |
| 132 | std::string result; |
| 133 | BOOST_FOREACH (const PAIRTYPE(void*, CLockLocation) & i, *lockstack) |
| 134 | result += i.second.ToString() + std::string("\n"); |
| 135 | return result; |
| 136 | } |
| 137 | |
| 138 | void AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs) |
| 139 | { |
no test coverage detected