Memory management routines
These routines do not form a class. They are provided for server-project use only.
It is recommended that you use the new and delete operators.
Use malloc and free only if you must; for example, if
you call into a C file.
Routine | Description |
---|---|
void * ::operator new(size_t size) | Calls mi_alloc on the server side. |
void ::operator delete(void *ptr) | Deletes the memory allocated with the new operator. |
void * malloc(size_t size) | Calls mi_alloc on the server side. |
void free(void *memblock) | Frees the memory allocated with the malloc routine. |