|
Heap Functions
The heap functions enable a process to create a private heap, a block of one
or more pages in the address space of the calling process. The process can then
use a separate set of functions to manage the memory in that heap. There is no
difference between memory allocated from a private heap and that allocated by
using the standard allocation functions (GlobalAlloc, LocalAlloc, malloc, and so on).
The HeapCreate function creates a private heap object from which the calling process can
allocate memory blocks by using the HeapAlloc function. HeapCreate specifies both an initial size and a maximum size for the heap. The initial
size determines the number of committed, read-write pages initially allocated
for the heap. The maximum size determines the total number of reserved pages.
These pages create a contiguous block in the virtual address space of a process
into which the heap can grow. Additional pages are automatically committed from
this reserved space if requests by HeapAlloc exceed the current size of committed pages, assuming that the physical
storage for it is available. Once the pages are committed, they are not decommitted
until the process is terminated or until the heap is destroyed by calling the HeapDestroy function.
The memory of a private heap object is accessible only to the process that
created it. If a dynamic-link library (DLL) creates a private heap, it does so in
the address space of the process that called the DLL. It is accessible only to
that process.
The HeapAlloc function allocates a specified number of bytes from a private heap and
returns a pointer to the allocated block. The pointer identifies the block for the HeapFree function to release or for the HeapSize function to determine the size.
Memory allocated by HeapAlloc is not movable. Because the system cannot compact a private heap, the heap
can become fragmented.
A possible use for the heap functions is to create a private heap when a
process starts up, specifying an initial size sufficient to satisfy the memory
requirements of the process. If the call to the HeapCreate function fails, the process can terminate or notify the user of the memory
shortage; if it succeeds, however, the process is assured of having the memory it
needs.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|