| 518 | } |
| 519 | |
| 520 | void DumpSystemAllocatorStats(TCMalloc_Printer* printer) { |
| 521 | for (int j = 0; j < kMaxAllocators; j++) { |
| 522 | SysAllocator *a = allocators[j]; |
| 523 | if (a == NULL) continue; |
| 524 | if (a->usable_) { |
| 525 | a->DumpStats(printer); |
| 526 | } |
| 527 | } |
| 528 | } |