Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/schets/fast_alloc
- Owner: schets
- License: bsd-3-clause
- Created: 2015-06-11T01:58:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-14T17:03:02.000Z (over 9 years ago)
- Last Synced: 2023-08-05T00:51:19.626Z (over 1 year 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.