| 146 | |
| 147 | |
| 148 | MemoryPool* Jrd::Attachment::createPool() |
| 149 | { |
| 150 | MemoryPool* const pool = MemoryPool::createPool(att_pool, att_memory_stats); |
| 151 | auto stats = FB_NEW_POOL(*pool) MemoryStats(&att_memory_stats); |
| 152 | pool->setStatsGroup(*stats); |
| 153 | att_pools.add(pool); |
| 154 | return pool; |
| 155 | } |
| 156 | |
| 157 | |
| 158 | void Jrd::Attachment::deletePool(MemoryPool* pool) |
no test coverage detected