https://github.com/olefirenque/buddy-memory-allocator
An implementation of buddy memory allocation and second chance cache.
https://github.com/olefirenque/buddy-memory-allocator
cpp
Last synced: about 1 year ago
JSON representation
An implementation of buddy memory allocation and second chance cache.
- Host: GitHub
- URL: https://github.com/olefirenque/buddy-memory-allocator
- Owner: olefirenque
- Created: 2021-06-04T20:37:09.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-15T22:59:49.000Z (over 4 years ago)
- Last Synced: 2025-04-11T23:52:43.547Z (about 1 year ago)
- Topics: cpp
- Language: C++
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Pool allocator, which implements "buddy" algorithm.
This is an implementation of buddy memory allocation. The buddy memory allocation techniqueis a memory allocation algorithm that divides memory into partitions to try to satisfy a memory re-quest as suitably as possible. This system makes use of splitting memory into halves to try to give a best fit.