| 56 | |
| 57 | |
| 58 | DirIvCache::DirIvCache() |
| 59 | { |
| 60 | |
| 61 | m_lookups = 0; |
| 62 | m_hits = 0; |
| 63 | m_ttl = 0; |
| 64 | m_map.reserve(DIR_IV_CACHE_ENTRIES); |
| 65 | |
| 66 | InitializeCriticalSection(&m_crit); |
| 67 | } |
| 68 | |
| 69 | DirIvCache::~DirIvCache() |
| 70 | { |
nothing calls this directly
no outgoing calls
no test coverage detected