Armadillo
0.1.1
TheexpandableOS
|
Memory manager. More...
Go to the source code of this file.
Functions | |
void | mem_init () |
void * | malloc (size_t size) |
void | free (void *ptr) |
int | get_align_size () |
Memory manager.
void free | ( | void * | ptr | ) |
Deallocates the memory previously allocated by a call to malloc.
ptr | This is the pointer to a memory block previously allocated with malloc to be deallocated. If a null pointer is passed as argument, no action occurs. |
void* malloc | ( | size_t | size | ) |
Allocates the requested memory and returns a pointer to it.
size | This is the size of the memory block, in bytes. |
void mem_init | ( | ) |
Initializes the memory manager.