| 574 | } |
| 575 | |
| 576 | void omPrintUsedTrackAddrs(FILE* fd, int max) |
| 577 | { |
| 578 | om_total_used_size = 0; |
| 579 | om_total_used_blocks = 0; |
| 580 | om_print_used_addr_fd = (fd == NULL ? stdout : fd); |
| 581 | om_print_frames = max; |
| 582 | omIterateTroughAddrs(0, 1 , _omPrintUsedAddr, NULL); |
| 583 | fprintf(fd, "UsedTrackAddrs Summary: UsedBlocks:%ld TotalSize:%ld\n", |
| 584 | om_total_used_blocks, (long)om_total_used_size); |
| 585 | } |
| 586 | #endif /* ! OM_NDEBUG */ |
no test coverage detected