Expand description
General purpose space allocators. These don’t actually allocate any memory, they only provide bookkeeping. Allocation methods will return Allocations with an offset and size that the user can interpret in whichever way they need.
Re-exports§
pub use linear::LinearAllocator;
Modules§
Structs§
- Buddy
Allocation - Allocation information from a
BuddyAllocator
allocation. - Buddy
Allocator - Bitmap-tree-based buddy allocator, loosely based on https://github.com/Restioson/buddy-allocator-workshop.
- OutOf
Memory