The HeapCompact function attempts to compact a specified heap. It compacts the heap by coalescing adjacent free blocks of memory and decommitting large free blocks of memory.
UINT HeapCompact(
HANDLE hHeap, |
// handle to the heap to compact |
DWORD dwFlags |
// bit-flags that control heap access during function operation |
); |
Value |
Meaning |
HEAP_NO_SERIALIZE |
If this flag is set, heap access is not serialized while the HeapCompact function accesses the heap; heap access is not mutually exclusive. It is safe to set this flag only in a limited set of specific situations. For a discussion of those situations and heap serialization in general, see the Remarks section of HeapCreate. If this flag is clear, heap access is serialized while HeapCompact accesses the heap; heap access is mutually exclusive. This is the safe and simple default condition. |
If the function succeeds, the return value is the size, in bytes, of the largest committed free block in the heap. This is an unsigned integer value.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
In the unlikely case that there is absolutely no space available in the heap, the function return value is zero, and GetLastError returns the value NO_ERROR.
There is no guarantee that an application can successfully allocate a memory block of the size returned by HeapCompact. Other threads or the commit threshold might prevent such an allocation.
file: /Techref/os/win/api/win32/func/src/f44_14.htm, 3KB, , updated: 2000/4/7 11:19, local time: 2024/11/10 00:44,
3.147.66.250:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/os/win/api/win32/func/src/f44_14.htm"> HeapCompact</A> |
Did you find what you needed? |