-------------------------------------------------------------------------
| 273 | |
| 274 | //------------------------------------------------------------------------- |
| 275 | void Debugger::OnExitThread(DWORD dwThreadId) |
| 276 | { |
| 277 | LOG_DEBUG << "Exit thread:" << dwThreadId; |
| 278 | |
| 279 | if (threadHandles_.erase(dwThreadId) != 1) |
| 280 | THROW("Cannot find exited thread."); |
| 281 | } |
| 282 | |
| 283 | //------------------------------------------------------------------------- |
| 284 | HANDLE Debugger::GetProcessHandle(DWORD dwProcessId) const |
nothing calls this directly
no outgoing calls
no test coverage detected