Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 358 Bytes

README.md

File metadata and controls

3 lines (2 loc) · 358 Bytes

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.