FreeMemList
Frees a memory list.
Synopsis
void FreeMemList( MemList *ml )
Description
This procedure frees a memory list that was allocated by a call to AllocMemList()
.
Arguments
- ml
- A pointer to the memory list to free. This value may be NULL, in which case this function just returns.
Implementation
Folio call implemented in kernel folio V20.
Associated Files
- mem.h
- ANSI C Prototype
- clib.lib
- ARM Link Library
Caveats
If the list is not empty, any memory it contains is lost.
See Also
AllocMemList
()