| 59 | }; |
| 60 | |
| 61 | size_t HashThreadParam(ThreadParam tp) { return std::hash<int64_t>()(tp.processId + tp.addr) + std::hash<int64_t>()(tp.ctx + tp.ctx2); } |
| 62 | Synchronized<std::unordered_map<ThreadParam, TextThread, Functor<HashThreadParam>>> textThreadsByParams; |
| 63 | Synchronized<std::unordered_map<DWORD, ProcessRecord>> processRecordsByIds; |
| 64 |
nothing calls this directly
no outgoing calls
no test coverage detected