C/C++
scalable.txt
Associated article: Keeping C/C++ Code Scalable
Tags: C/C++
Published source code accompanying the article by Kirk J. Krauss in which he presents techniques for identifying committed virtual address space in C/C++ programs.
Keeping C/C++ Code Scalable by Kirk J. Krauss Listing One /* The Track Heap Commitment algorithm */ /* Determines whether the specified memory range, */ /* corresponding to a recently allocated heap memory block, */ /* resides completely within the tracked committed regions of */ /* the heap. ...


