| 741 | void LoggingMemoryPool::PrintStats() { pool_->PrintStats(); } |
| 742 | |
| 743 | int64_t LoggingMemoryPool::bytes_allocated() const { |
| 744 | int64_t nb_bytes = pool_->bytes_allocated(); |
| 745 | std::cout << "bytes_allocated: " << nb_bytes << std::endl; |
| 746 | return nb_bytes; |
| 747 | } |
| 748 | |
| 749 | int64_t LoggingMemoryPool::max_memory() const { |
| 750 | int64_t mem = pool_->max_memory(); |
no outgoing calls