Application Owns Memory Block After free() CallLast reviewed: July 17, 1997Article ID: Q23869 |
5.10 6.00 6.00a 6.00ax 7.00 | 1.00 1.50 1.51 1.52
MS-DOS | WINDOWSkbprg
The information in this article applies to:
SUMMARYWhen an application uses the malloc() function to request more memory than is currently available in the heap, the malloc() function requests more memory using an MS-DOS interrupt to provide a larger amount of heap space. If malloc() is able to obtain additional memory, it performs the allocation and returns a pointer to the memory. When the application no longer needs a block of allocated memory, it calls the free() function which marks the block as available in the heap. Subsequent calls to malloc() can use this area of memory. However, according to MS-DOS, the memory block is still in use because it is a part of the application's heap. If the application calls the system() function to execute a command, the memory is not available to MS-DOS. Microsoft C version 6.0 introduced the _heapmin() function which returns to the operating system unused space in the heap. The other alternative is to modify the source code to use the halloc() and hfree() functions which allocate memory directly from the operating system and not through the application's heap.
|
Additional reference words: kbinf 1.00 1.50 5.10 6.00 6.00a 6.00ax
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |