| 2094 | |
| 2095 | |
| 2096 | MemPool::MemPool(MemoryStats& s, ExtentsCache* cache) |
| 2097 | : pool_destroying(false), |
| 2098 | parent_redirect(false), |
| 2099 | stats(&s), |
| 2100 | parent(NULL), |
| 2101 | extentsCache(cache) |
| 2102 | { |
| 2103 | fb_assert(offsetof(MemBlock, body) == MEM_ALIGN(offsetof(MemBlock, body))); |
| 2104 | initialize(); |
| 2105 | } |
| 2106 | |
| 2107 | MemPool::MemPool(MemPool& p, MemoryStats& s, ExtentsCache* cache) |
| 2108 | : pool_destroying(false), |
nothing calls this directly
no test coverage detected