#include <axutil_allocator.h>
Public Attributes | |
void *(* | malloc_fn )(struct axutil_allocator *allocator, size_t size) |
void *(* | realloc )(struct axutil_allocator *allocator, void *ptr, size_t size) |
void(* | free_fn )(struct axutil_allocator *allocator, void *ptr) |
void * | local_pool |
void * | global_pool |
void * | current_pool |
Encapsulator for memory allocating routines
void*( * axutil_allocator::malloc_fn)(struct axutil_allocator *allocator, size_t size) |
allocates memory
allocator | pointer to allocator struct. In the default implementation this is not used, however this parameter is useful when the allocator implementation is dealing with a memory pool. | |
size | size of the memory block to be allocated |
void*( * axutil_allocator::realloc)(struct axutil_allocator *allocator, void *ptr, size_t size) |
re-llocates memory
allocator | pointer to allocator struct. In the default implementation this is not used, however this parameter is useful when the allocator implementation is dealing with a memory pool. | |
ptr | memory block who's size to be changed | |
size | size of the memory block to be allocated |
void( * axutil_allocator::free_fn)(struct axutil_allocator *allocator, void *ptr) |
frees memory
allocator | pointer to allocator struct. In the default implementation this is not used, however this parameter is useful when the allocator implementation is dealing with a memory pool. | |
ptr | pointer to be freed |
local memory pool
global memory pool
memory pool in use currently