ETW_HEAP_EVENT_FREE event
The ETW_HEAP_EVENT_FREE event is a memory management tracing event for a heap free operation.
typedef struct ETW_HEAP_EVENT_FREE
Parameters
-
HeapHandle
-
The handle of the heap where the memory was allocated. This is the heap handle an app passed to the AllocateHeap function when the memory was allocated.
-
Address
-
The address of the memory that was freed.
-
Source
-
The source of the memory that the allocator used for the heap allocation.
The following table lists the possible values for the Source parameter as defined in the ntetw.h header file:
Value Meaning - MEMORY_FROM_LOOKASIDE
- 1
Memory from the lookaside list. - MEMORY_FROM_LOWFRAG
- 2
Memory from the low-fragmentation heap. - MEMORY_FROM_MAINPATH
- 3
Memory from main code path. - MEMORY_FROM_SLOWPATH
- 4
Memory from slow c. - MEMORY_FROM_INVALID
- 5
Memory that was not valid. - MEMORY_FROM_SEGMENT_HEAP
- 6
This value is reserved for future use and will never be returned.
Remarks
The ETW_HEAP_EVENT_FREE event is logged on all heap free operations.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 7 [desktop apps only] |
Minimum supported server |
Windows Server 2008 R2 [desktop apps only] |
Header |
|
See also