Add an object to the cache
| 44 | |
| 45 | // Add an object to the cache |
| 46 | void ProcessResolver::addObject(DWORD id, const Process& obj) { |
| 47 | std::lock_guard<std::mutex> lock(cache_mutex); |
| 48 | cache[id] = obj; |
| 49 | } |
| 50 | |
| 51 | |
| 52 | BOOL ProcessResolver::containsObject(DWORD pid) { |
nothing calls this directly
no outgoing calls
no test coverage detected