Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/schets/fast_alloc

Playing around with some simple slab allocators
https://github.com/schets/fast_alloc

Last synced: 20 days ago
JSON representation

Playing around with some simple slab allocators

Awesome Lists containing this project

README

        

# fast_alloc
A implementation of block/arena style allocators
This contains a block-style allocator, which is a more general-purpose style allocator and a stack-based allocator, which is faster but has more restricted free semantics

Similar to the allocator I wrote in Openage, but in plain C this time.