https://github.com/schets/fast_alloc
Playing around with some simple slab allocators
https://github.com/schets/fast_alloc
Last synced: 2 months ago
JSON representation
Playing around with some simple slab allocators
- Host: GitHub
- URL: https://github.com/schets/fast_alloc
- Owner: schets
- License: bsd-3-clause
- Created: 2015-06-11T01:58:39.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-14T17:03:02.000Z (almost 10 years ago)
- Last Synced: 2025-01-30T17:47:33.788Z (4 months ago)
- Language: C
- Homepage:
- Size: 223 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 semanticsSimilar to the allocator I wrote in Openage, but in plain C this time.