The DOF Memory Allocator is responsible for allocating memory used internally by the C OAL. More...
Functions | |
void * | DOFMem_Alloc (uint32 size) |
Allocate a block of memory. | |
void * | DOFMem_Realloc (void *mem, uint32 size) |
Reallocate a block of memory. | |
void | DOFMem_Free (void *mem) |
Free a block of memory. | |
The DOF Memory Allocator is responsible for allocating memory used internally by the C OAL.
It is made up of 3 main functions: DOFMem_Alloc, DOFMem_Free, and DOFMem_Realloc.
These functions can be replaced by a user by linking with user implementations of the functions, overriding the library versions.