| 89 | size_t get_alloc_cnt_total() { return ismt ? tracer_mt.alloced_cnt_total.load() : tracer.alloced_cnt_total; } |
| 90 | |
| 91 | void allocdebug_show() { |
| 92 | logFmt(LogInfo, "meminfo (alloced {}M, {} total allocs, {} remain)", get_alloc_size() / (1024 * 1024), get_alloc_cnt_total(), |
| 93 | get_alloc_cnt()); |
| 94 | } |
nothing calls this directly
no test coverage detected