| 463 | } |
| 464 | |
| 465 | void BufferPool::BufferAllocator::Maintenance() { |
| 466 | for (unique_ptr<FreeBufferArena>& arena : per_core_arenas_) arena->Maintenance(); |
| 467 | } |
| 468 | |
| 469 | void BufferPool::BufferAllocator::ReleaseMemory(int64_t bytes_to_free) { |
| 470 | int64_t bytes_freed = 0; |
nothing calls this directly
no test coverage detected