#allocator #slab #heap #kernel #no-std #linked-list

nightly no-std slab_allocator

Slab allocator for no_std systems. Uses multiple slabs with blocks of different sizes and a linked list for blocks larger than 4096 bytes

7 releases

Uses old Rust 2015

0.3.5 Sep 6, 2018
0.3.4 Sep 6, 2018
0.3.3 Jul 15, 2018
0.3.2 Jun 24, 2018
0.1.0 Jan 8, 2018

#39 in #slab

MIT license

23KB
476 lines

slab_allocator

Build Status

Documentation

Usage

Create a static allocator in your root module:

use slab_allocator::LockedHeap;

#[global_allocator]
static ALLOCATOR: LockedHeap = LockedHeap::empty();

Before using this allocator, you need to init it:

pub fn init_heap() {
    let heap_start =;
    let heap_end =;
    let heap_size = heap_end - heap_start;
    unsafe {
        ALLOCATOR.init(heap_start, heap_size);
    }
}

License

This crate is licensed under MIT. See LICENSE for details.

Dependencies

~225KB