MCPcopy Create free account
hub / github.com/Singular/Singular / omPrintUsedTrackAddrs

Function omPrintUsedTrackAddrs

omalloc/omDebugCheck.c:576–585  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

574}
575
576void 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 */

Callers 2

jjEXTENDED_SYSTEMFunction · 0.85
scanner.ccFile · 0.85

Calls 1

omIterateTroughAddrsFunction · 0.85

Tested by

no test coverage detected