| 145 | } |
| 146 | |
| 147 | size_t MemoryMonitor::getPoolSlabs(PoolId poolId) const noexcept { |
| 148 | return bytesToSlabs(cache_.getPool(poolId).getPoolUsableSize()); |
| 149 | } |
| 150 | |
| 151 | size_t MemoryMonitor::getTotalSlabs() const noexcept { |
| 152 | const auto pools = cache_.getRegularPoolIds(); |
nothing calls this directly
no test coverage detected