Allocator Designs
https://os.phil-opp.com/allocator-designs/ [os.phil-opp.com]
2020-02-05 05:48
This post explains how to implement heap allocators from scratch. It presents and discusses different allocator designs, including bump allocation, linked list allocation, and fixed-size block allocation. For each of the three designs, we will create a basic implementation that can be used for our kernel.