Only called during new-overide initialization Pointer to the allocated block
| Return Type | Function name | Arguments |
|---|---|---|
| void* | _regime_alloc_Syst | (uint32_t,) |
Declared and defined in file: hzMemory.cpp
Function Logic:
Function body:
void* _regime_alloc_Syst (uint32_t size)
{
// Category: Memory
//
// Only called during new-overide initialization
//
// Arguments: 1) size Bytes to allocate
// Returns: Pointer to the allocated block
void* ptr ; // New object space
s_nBytesInit += size ;
ptr = malloc(size) ;
return ptr ;
}