| |||
| Home > The C and C++ Libraries > Tailoring the runtime memory model > __user_heap_extend() |
This function can be defined to return extra blocks of memory, separate from the initial one, to be used by the heap. If defined, this function must return the size and base address of an eight-byte aligned heap extension block.
There is no default implementation of this function. If you define this function, it must have the following characteristics:
The returned size must be either:
a multiple of eight bytes of at least the requested size
0, denoting that the request cannot be honored.
Size is measured in bytes.
The function is subject only to AAPCS constraints.
The first argument is always zero on entry and can be ignored. The base is returned in the register holding this argument.
The returned base address must be aligned on an eight-byte boundary.