Adaptive Framework
0.9.0
|
Adaptive Frameworksinglethreaded pool implementation. More...
Go to the source code of this file.
Macros | |
#define | AFW_IMPLEMENTATION_ID "afw_pool_singlethreaded" |
#define | IMPL_DEBUG_LEVEL_detail flag_index_debug_pool_detail |
#define | IMPL_DEBUG_LEVEL_minimal flag_index_debug_pool |
#define | IMPL_PRINT_DEBUG_INFO_Z(level, info_z) |
#define | IMPL_PRINT_DEBUG_INFO_FZ(level, format_z, ...) |
Functions | |
afw_pool_create (const afw_pool_t *parent, afw_xctx_t *xctx) | |
Create a new pool. More... | |
afw_pool_create_debug (const afw_pool_t *parent, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) | |
Debug version of create a new pool. More... | |
afw_pool_internal_create_thread (afw_size_t size, afw_xctx_t *xctx) | |
afw_pool_internal_create_thread_debug (afw_size_t size, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) | |
void | impl_afw_pool_release (const afw_pool_t *instance, afw_xctx_t *xctx) |
void | impl_afw_pool_add_reference (const afw_pool_t *instance, afw_xctx_t *xctx) |
void | impl_afw_pool_destroy (const afw_pool_t *instance, afw_xctx_t *xctx) |
apr_pool_t * | impl_afw_pool_get_apr_pool (const afw_pool_t *instance) |
void * | impl_afw_pool_calloc (const afw_pool_t *instance, afw_size_t size, afw_xctx_t *xctx) |
void * | impl_afw_pool_malloc (const afw_pool_t *instance, afw_size_t size, afw_xctx_t *xctx) |
void | impl_afw_pool_free (const afw_pool_t *instance, void *address, afw_size_t size, afw_xctx_t *xctx) |
void | impl_afw_pool_register_cleanup_before (const afw_pool_t *instance, void *data, void *data2, afw_pool_cleanup_function_p_t cleanup, afw_xctx_t *xctx) |
void | impl_afw_pool_deregister_cleanup (const afw_pool_t *instance, void *data, void *data2, afw_pool_cleanup_function_p_t cleanup, afw_xctx_t *xctx) |
void | impl_afw_pool_release_debug (const afw_pool_t *instance, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) |
void | impl_afw_pool_add_reference_debug (const afw_pool_t *instance, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) |
void | impl_afw_pool_destroy_debug (const afw_pool_t *instance, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) |
void * | impl_afw_pool_calloc_debug (const afw_pool_t *instance, afw_size_t size, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) |
void * | impl_afw_pool_malloc_debug (const afw_pool_t *instance, afw_size_t size, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) |
void | impl_afw_pool_free_debug (const afw_pool_t *instance, void *address, afw_size_t size, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) |
void | impl_afw_pool_register_cleanup_before_debug (const afw_pool_t *instance, void *data, void *data2, afw_pool_cleanup_function_p_t cleanup, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) |
void | impl_afw_pool_deregister_cleanup_debug (const afw_pool_t *instance, void *data, void *data2, afw_pool_cleanup_function_p_t cleanup, afw_xctx_t *xctx, const afw_utf8_z_t *source_z) |
Adaptive Frameworksinglethreaded pool implementation.
Definition in file afw_pool_singlethreaded.c.
#define IMPL_DEBUG_LEVEL_detail flag_index_debug_pool_detail |
Definition at line 27 of file afw_pool_singlethreaded.c.
#define IMPL_PRINT_DEBUG_INFO_FZ | ( | level, | |
format_z, | |||
... | |||
) |
Definition at line 57 of file afw_pool_singlethreaded.c.
#define IMPL_PRINT_DEBUG_INFO_Z | ( | level, | |
info_z | |||
) |
Definition at line 30 of file afw_pool_singlethreaded.c.