| 753 | } |
| 754 | |
| 755 | int64_t LoggingMemoryPool::total_bytes_allocated() const { |
| 756 | int64_t mem = pool_->total_bytes_allocated(); |
| 757 | std::cout << "total_bytes_allocated: " << mem << std::endl; |
| 758 | return mem; |
| 759 | } |
| 760 | |
| 761 | int64_t LoggingMemoryPool::num_allocations() const { |
| 762 | int64_t mem = pool_->num_allocations(); |
no outgoing calls