summaryrefslogtreecommitdiff
path: root/arena.h
AgeCommit message (Collapse)Author
2024-11-01Simple arena implementation using singly linked listAryadev Chavali
Manages individual allocations via a bump allocator (region), with unfit allocations triggering a new region allocation that is added to a linked list. Any new region allocations will always be oversized for the initially requested size, to amortize the cost of future allocations.