Ole Morud 1fd96ff1ce Fix arena_tail_realloc memory bug
`arena_realloc_tail` exceeding PAGE_SIZE would create a big page,
preceeding calls to `arena_realloc_tail` would then cause memory bugs.
2023-06-05 22:26:10 +02:00
2023-06-05 22:26:10 +02:00
2023-05-15 23:55:55 +02:00
2023-06-05 22:26:10 +02:00
2023-05-15 01:04:37 +02:00

arena_t* arena_new()

Initializes and returns new arena

void arena_reset(arena_t *a)

Free memory allocated in arena

void* arena_alloc(arena_t *a, size_t len)

Allocate new memory using arena

Description
No description provided
Readme 68 KiB
Languages
C 94.7%
CMake 5.3%