Article ID: 168609 - Last Review: June 5, 2007 - Revision: 1.2 How to Use Display Heap (DH.EXE) Resource Kit UtilityThis article was previously published under Q168609
IMPORTANT: This article contains information about editing the registry.
Before you edit the registry, make sure you understand how to restore it if
a problem occurs. For information about how to do this, view the "Restoring
the Registry" Help topic in Regedit.exe or the "Restoring a Registry Key"
Help topic in Regedt32.exe.
SUMMARY
This article discusses the setup and usage of the Windows NT Resource Kit
Utility, Display Heap (DH.EXE).
MORE INFORMATIONDisplay Heap (DH.EXE) Display Heap (DH) is a character-mode tool for displaying information about heap usage in a user mode process or pool usage in kernel mode memory. DH writes its formatted output to a text file. DH accepts command line switches to identify which process to display information for along with what information to display. Use "/?" at the command line to see command line information:
Usage: DH [-l] [-m] [-s] [-g] [-h] [-t] [-p -1 | 0 [-k] [-o] | n] [-f fileName]
where: -l - displays information about locks.
-m - displays information about module table.
-s - displays summary information about heaps.
-g - displays information about memory hogs.
-h - displays information about heap entries for each heap.
-t - displays information about heap tags for each heap.
-b - displays information about stack back trace database.
-i - ignore information about stack back trace database.
-p 0 - displays information about kernel memory and objects in
DH_SYS.DMP.
-o - displays information about object handles (only valid with -p
0).
-k - displays information about processes and threads (only valid
with -p 0).
-p -1 - displays information about Win32 Subsystem process in
DH_WIN32.DMP.
-p n - displays information about process with ClientId of n
-f fileName - specifies the name of the file to write the dump to.
Default file name is DH_nnnn.DMP where nnnn is the
process id.
-- specifies the dump output should be written to stdout.
Default flags are: -p -1 -m -l -s -g -h
The most useful information that DH can display is a listing of potential memory hogs (programs or drivers that allocate excessive amounts of memory) or those allocation calls (calls that allocate memory) that have allocated the most memory. Unfortunately, to identify call sites symbolically, the system needs the ability to capture a stack back trace at runtime. This is only supported on checked x86 builds (Checked versions of Windows NT are available through MSDN subscriptions). To get the full benefit of DH, you need to run it on a checked x86 build of Windows NT and enable certain GLOBAL flags located in the registry. In order to get your machine ready to use DH.EXE, follow these steps: WARNING: Using Registry Editor incorrectly can cause serious problems that may require you to reinstall your operating system. Microsoft cannot guarantee that problems resulting from the incorrect use of Registry Editor can be solved. Use Registry Editor at your own risk. For information about how to edit the registry, view the "Changing Keys And Values" Help topic in Registry Editor (Regedit.exe) or the "Add and Delete Information in the Registry" and "Edit Registry Data" Help topics in Regedt32.exe. Note that you should back up the registry before you edit it.
SET _NT_SYMBOL_PATH=C:\WINNT (or wherever Windows NT is installed).
After this is completed, you can now run the DH program and get the desired
output.
The -g option to DH will display a sorted list of call sites that have allocated the most memory. Each call site is identified by a symbolic stack back trace of up 16 levels that should uniquely identify the code path that resulted in the memory allocations. NOTE: That the default command line flags by just running DH.EXE at the command prompt are: -p -1 -m -l -s -g -h. *See the command line options for default file output names (depends on where you are displaying Win32 subsystem or Kernel mode memory). If you are planning to use DH.EXE in a retail environment: DH is still useful, on retail builds of Windows NT with the -p 0 option, as this will display a list of all Windows NT kernel objects in the system along with all handles to those objects for each process. *Global flag settings still apply when using DH on retail builds of Windows NT. | Article Translations
|
Back to the top
