Partager via


CEL_HEAP_FREE

This structure identifies heap memory that has been freed.

typedef struct __CEL_HEAP_FREE {
  HANDLE hHeap;
  DWORD dwFlags;
  DWORD lpMem;
  DWORD dwTID;
  DWORD dwPID;
  DWORD dwCallerPID;
  DWORD adwStackTrace[0];
} CEL_HEAP_FREE, *PCEL_HEAP_FREE; 

Members

  • hHeap
    Handle of the heap to perform the operation. This corresponds to the hHeap parameter of the HeapFree API.
  • dwFlags
    Corresponds to the dwFlags parameter of the HeapFree API.
  • lpMem
    Pointer to the memory that is being freed. This corresponds to the lpMem parameter of HeapFree.
  • dwTID
    Identifier of the thread that destroyed the heap.
  • dwPID
    Process that owns the thread that destroyed the heap.
  • dwCallerPID
    Process inside which the thread that freed the memory is currently running.
  • adwStackTrace
    Optional array of addresses of functions on the stack at the point when the memory was freed. The length of the stack trace can be inferred from the length given in the CEL_HEADER event header.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Celog.h.

See Also

HeapFree

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.