Share via


CEL_HEAP_FREE (Windows CE 5.0)

Send Feedback

This structure identifies heap memory that has been freed.

typedef struct __CEL_HEAP_FREE {HANDLEhHeap;DWORDdwFlags;DWORDlpMem;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 function.
  • dwFlags
    Corresponds to the dwFlags parameter of the HeapFree function.
  • 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 | CEL_HEADER

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.