| 28 | } |
| 29 | |
| 30 | void CBlockMemoryPool::PoolLargeFree(void* &m) { |
| 31 | std::unique_lock<std::mutex> lock(_large_mutex); |
| 32 | _free_mem_vec.push_back(m); |
| 33 | } |
| 34 | |
| 35 | int CBlockMemoryPool::GetSize() { |
| 36 | std::unique_lock<std::mutex> lock(_large_mutex); |
nothing calls this directly
no outgoing calls
no test coverage detected