Crate slab_allocator
source ·Expand description
Slab allocator for no_std
systems. It uses multiple slabs with blocks of
different sizes and a buddy_system_allocator for blocks larger than 4096
bytes.
It’s based on https://github.com/weclaw1/slab_allocator.
Structs
- A fixed size heap backed by multiple slabs with blocks of different sizes. Allocations over 4096 bytes are served by linked list allocator.