| 55 | int64_t max_memory() const { return max_memory_.load(std::memory_order_acquire); } |
| 56 | |
| 57 | int64_t bytes_allocated() const { |
| 58 | return bytes_allocated_.load(std::memory_order_acquire); |
| 59 | } |
| 60 | |
| 61 | int64_t total_bytes_allocated() const { |
| 62 | return total_allocated_bytes_.load(std::memory_order_acquire); |