Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ozerovandrei/free-list-allocator
Custom free list allocator
https://github.com/ozerovandrei/free-list-allocator
Last synced: 16 days ago
JSON representation
Custom free list allocator
- Host: GitHub
- URL: https://github.com/ozerovandrei/free-list-allocator
- Owner: ozerovandrei
- Created: 2019-12-22T08:26:29.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-17T08:36:44.000Z (about 4 years ago)
- Last Synced: 2024-11-11T14:51:13.778Z (3 months ago)
- Language: C++
- Size: 46.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Custom free list allocator
Free list allocator that provides `first-fit`, `next-fit` and `best-fit`
allocation strategies.## Compilation command (MacOS)
```
clang++ -std=c++17 -stdlib=libc++ -O3 ./src/main.cpp
```