| 128 | } |
| 129 | |
| 130 | string LocksHeld() |
| 131 | { |
| 132 | string result; |
| 133 | for (const auto&i : *lockstack) |
| 134 | result += i.second.ToString() + 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