Debugging Tools for Windows

Example 9: Detecting a Pool Memory Leak

The following example uses GFlags to set the system-wide Enable pool tagging flag in the registry. Then, it uses Poolmon (poolmon.exe), a tool in the Windows Driver Kit, to display the size of the memory pools.

Poolmon monitors the bytes in the paged and nonpaged memory pools and sorts them by pool tag. By running Poolmon periodically, you can identify pools that expand continuously over time. This pattern often indicates a memory leak.

Notes  Pool tagging is permanently enabled on all versions of Windows Server 2003. On these systems, the Enable pool tagging check box on the Global Flags dialog box is dimmed, and commands to enable or disable pool tagging fail.

If pool tagging is not enabled, Poolmon fails and displays the following message: "Query pooltags Failed c0000002."

To detect a pool memory leak
  1. To enable pool tagging for all processes, set the system-wide Enable pool tagging flag in the registry. The following command line uses the flag abbreviation method, but you can identify the flag by its hexadecimal value or use the Global Flags dialog box:

    gflags /r +ptg 

  2. Restart the computer to make the registry change effective.
  3. Run Poolmon periodically by using the following command. In this command, the /b parameter sorts the pools in descending size order.

    poolmon /b 

    In response, Poolmon displays allocations from the memory pools in descending size order , including the number of allocate operations and free operations, and the amount of memory remaining in the pool (in the Bytes column).

    Memory: 16224K Avail: 4564K PageFlts: 31 InRam Krnl: 684K P: 680K
     Commit: 24140K Limit: 24952K Peak: 24932K  Pool N: 744K P: 2180K

     Tag  Type    Allocs          Frees         Diff   Bytes      Per Alloc
    -----------------------------------------------------------------------

     CM   Paged    1283 (   0)    1002 (   0)    281 1377312 (     0) 4901
    Strg  Paged   10385 (  10)    6658 (   4)   3727  317952 (   512)   85
     Fat  Paged    6662 (   8)    4971 (   6)   1691  174560 (   128)  103
    MmSt  Paged     614 (   0)     441 (   0)    173   83456 (     0)  482

    If the value in the Bytes column for an allocation expands continuously for no obvious reason, there might be a memory leak in that pool.

  4. Clear the Enable pool tagging flag.

    The following command line uses the flag abbreviation method, but you can identify the flag by its hexadecimal value or use the Global Flags dialog box:

    gflags /r -ptg 

  5. Restart Windows to make the registry change effective.

Note  Use the append symbol (>>) to redirect the Poolmon output to a log file. Later, you can examine the log file for pool size trends. For example:

poolmon.exe /b >> poolmon.log 

Build machine: CAPEBUILD