Size of Heap at some location in program

  • Thread starter Thread starter Bruce Barker
  • Start date Start date
B

Bruce Barker

use the windbg.exe debugger (from .net framework sdk) and the sos.dll
(included with 2.0, but you must download for 1.1).

google sos.dll to find articles on how to use it.


-- bruce (sqlwork.com)




Hi

How can i know the current status of Heap at a specific location of program.
I want to put a break point in program and want to know what is the status
of my heap at that time.

OBINT
 
In 2.0, you might be able to create a new debug visualizer for System.Object
that calls the performance couters for .Net Memory to show the different 4 GC
heaps and the total heap size. A calculated working set would also be cool
 
Back
Top