14 static arena_t *gGlobalArena = NULL;
30 static arena_t *gGmpArena = NULL;
32 static void *ctu_gmp_malloc(
size_t size)
37 static void *ctu_gmp_realloc(
void *ptr,
size_t old_size,
size_t new_size)
44 static void ctu_gmp_free(
void *ptr,
size_t size)
57 mp_set_memory_functions(ctu_gmp_malloc, ctu_gmp_realloc, ctu_gmp_free);
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
STA_DECL void init_gmp_arena(arena_t *arena)
initialize gmp with a custom allocator
void init_global_arena(arena_t *arena)
initialize the global memory arena
arena_t * get_global_arena(void)
get the global memory arena
#define CT_ALLOC_SIZE_UNKNOWN
unknown allocation size constant when freeing or reallocating memory, this can be used as the size to...
CT_NODISCARD CT_ARENA_API void * arena_realloc(STA_RELEASE void *ptr, size_t new_size, size_t old_size, arena_t *arena)
resize a memory allocation from a custom allocator
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
CT_ARENA_API void arena_free(STA_RELEASE void *ptr, size_t size, arena_t *arena)
release memory from a custom allocator
#define CTASSERT(expr)
assert a condition, prints the condition as a message