Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-11-01 | Simple arena implementation using singly linked list | Aryadev 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. |