found = FreeFree( free, memory )
BOOL FreeFree(struct FreeList *, APTR);
This routine is the counterpart to
FreeAlloc(). Unlike
FreeFreeList(), which releases all the memory allocated in the tracking list, only a single entry is deallocated.
This function was implemented in all icon.library versions starting with V44. However, it was never documented.
Deallocating single chunks is an expensive operation owing to the design of the FreeList data structure. It takes time to search for the right list entry to be deallocated, and when the deallocation is performed, an used memory tracking slot will remain that will be deallocated until
FreeFreeList() is called.
Calling
FreeFreeList() and calling FreeFree() for every memory chunk tracked is not equivalent! As part of the memory tracking process additional memory is allocated for every memory chunk which can be freed only by calling
FreeFreeList().
This function name is not particularly meaningful...
AllocEntry(), FreeEntry(),
FreeFreeList(),
FreeAlloc()