Cthulhu  0.2.10
Cthulhu compiler collection
arena_t Struct Reference

an allocator object More...

#include <arena.h>

Data Fields

const char * name
 the name of the allocator More...
 
mem_alloc_t fn_malloc
 the malloc function More...
 
mem_resize_t fn_realloc
 the realloc function More...
 
mem_release_t fn_free
 the free function More...
 
mem_rename_t fn_rename
 the rename function More...
 
mem_reparent_t fn_reparent
 the reparent function More...
 
void * user
 user data pointer More...
 

Detailed Description

an allocator object

a memory allocator

Definition at line 85 of file arena.h.

Field Documentation

◆ fn_free

mem_release_t arena_t::fn_free

the free function

Definition at line 97 of file arena.h.

◆ fn_malloc

mem_alloc_t arena_t::fn_malloc

the malloc function

Definition at line 91 of file arena.h.

◆ fn_realloc

mem_resize_t arena_t::fn_realloc

the realloc function

Definition at line 94 of file arena.h.

◆ fn_rename

mem_rename_t arena_t::fn_rename

the rename function

Note
this function is optional

Definition at line 101 of file arena.h.

◆ fn_reparent

mem_reparent_t arena_t::fn_reparent

the reparent function

Note
this function is optional

Definition at line 105 of file arena.h.

◆ name

const char* arena_t::name

the name of the allocator

Definition at line 88 of file arena.h.

◆ user

void* arena_t::user

user data pointer

Definition at line 108 of file arena.h.


The documentation for this struct was generated from the following file: