|
void | nyx_memory_initialize () |
| Initialize the memory subsystem.
|
|
bool | nyx_memory_finalize () |
| Finalize the memory subsystem.
|
|
__ZEROABLE__ size_t | nyx_memory_free (__NULLABLE__ buff_t buff) |
| Similar to libc free except that it returns the amount of memory freed.
|
|
__NULLABLE__ buff_t | nyx_memory_alloc (__ZEROABLE__ size_t size) |
| Similar to libc malloc except that a memory overflow causes the node to stop.
|
|
__NULLABLE__ buff_t | nyx_memory_realloc (__NULLABLE__ buff_t buff, __ZEROABLE__ size_t size) |
| Similar to libc realloc except that a memory overflow causes the node to stop.
|
|
Memory primitives with leak detection.