The C library heap management (malloc/free) functionality is at the base of many operations in the C and C++ runtime libraries. Because the implementation is not defined by the C runtime library specification it can be difficult to debug memory-related problems. For that reason the internal implementation of the INtime memory heap is described in this section. There are three sections described:
Item | Description |
---|---|
Heaps | Lists non-standard support functions that operate on the INtime run-time support heap. |
Memory pools | Lists common operations related to memory pools and the INtime system calls that do the operations. |
CrtDbg | Memory debug features using the CrtDbg interface |