Classes | |
struct | axis2_allocator |
Axis2 memory allocator. More... | |
Defines | |
#define | AXIS2_MALLOC(allocator, size) ((allocator)->malloc(size)) |
#define | AXIS2_REALLOC(allocator, ptr, size) ((allocator)->realloc(ptr, size)) |
#define | AXIS2_FREE(allocator, ptr) ((allocator)->free(ptr)) |
Typedefs | |
typedef axis2_allocator | axis2_allocator_t |
Axis2 memory allocator. | |
Functions | |
axis2_allocator_t * | axis2_allocator_init (axis2_allocator_t *allocator) |
|
Axis2 memory allocator. Encapsulator for memory allocating routines |
|
Initializes (creates) an allocator.
|