#define MXMODULE_ALLOC
Turn on memory tracking
If this macro is defined the functions mx_malloc, mx_realloc and mx_free
are made to keep track of memory allocated and warn from common memory allocation
mistakes. If this symbol is not defined then mx_malloc, mx_realloc and mx_free
just pass all arguments to the corresponding stdlib malloc, realloc, and free
function. In this case no additional memory checking is done.
(deds/alloc.h)
#define mx_malloc
Replacement for stdlib malloc
This function is a wrapper for malloc(). If MXMODULE_ALLOC is defined then
this function keeps track of memory and warns about possible memory allocation
problems.
(deds/alloc.h)
#define mx_realloc
Replacement for stdlib realloc
This function is a wrapper for realloc(). If MXMODULE_ALLOC is defined then
this function keeps track of memory and warns about possible memory allocation
problems.
(deds/alloc.h)
#define mx_free
Replacement for stdlib free
This function is a wrapper for free(). If MXMODULE_ALLOC is defined then
this function keeps track of memory and warns about possible memory allocation
problems.
(deds/alloc.h)
#define false
Macro for false.
#define true
Macro for true.
Generated by MXDOC 2.6 on Wed Apr 25 21:43:00 2007