CompuServe Messages

Memory Use

    09-Dec-89 16:39:31
Sb: #77938-Memory Use
Fm: Mike Spille/Manx 71545,1466
To: Syndesis 76004,1763
Unfortunately, neither heap manager is adequately documented in v3.6a – in fact, heapmem.o isn't in the manual at all. Version 5.0 will have only one method of heap allocation which will be a combination of the two existing methods. Oh, you're right – I believe heapmem.o does work more like a 'normal' malloc, in that _Heapsize really is just the block-size requested from the operating system, which is cut into smaller-chunks (if necessary) for the user. If you request more than _Heapsize bytes, then malloc will ask for as many blocks of size _Heapsize which will satisfy the request. -Mike