void * heapReAlloc(void *addr, uint32_t length)
Resizes a block of kernel memory.
void * heapAlloc(uint32_t length)
Allocates a block of kernel memory.
void heapFree(void *addr)
Deallocates a block of kernel memory.
void heapVerify()
Runs some internal checks to ensure that the heap is still valid.
uint32_t heapSize(void *addr)
Determines the size of a specific kernel memory block.