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

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.

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.