|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
HeapCompact
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
| );
|
|
Parameters
hHeap
Handle to the heap that the function will attempt to compact.
dwFlags
A set of bit flags that control heap access during function operation. The
following bit flag has meaning:
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.
|
Return Values
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.
Remarks
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.
See Also
HeapCreate, HeapValidate
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|