#allocator #bare-metal #heap-allocator #heap

no-std buddy_system_allocator

A bare metal allocator that uses buddy system

24 releases

0.11.0 Sep 21, 2024
0.10.0 Jul 1, 2024
0.9.1 Jan 27, 2024
0.9.0 Dec 14, 2022
0.1.2 Mar 18, 2019

#52 in Embedded development

Download history 3990/week @ 2024-11-21 3066/week @ 2024-11-28 3419/week @ 2024-12-05 4972/week @ 2024-12-12 3058/week @ 2024-12-19 2437/week @ 2024-12-26 1839/week @ 2025-01-02 3417/week @ 2025-01-09 3703/week @ 2025-01-16 2899/week @ 2025-01-23 2645/week @ 2025-01-30 4480/week @ 2025-02-06 3626/week @ 2025-02-13 4142/week @ 2025-02-20 5270/week @ 2025-02-27 4272/week @ 2025-03-06

18,067 downloads per month
Used in 12 crates (7 directly)

MIT license

32KB
642 lines

buddy_system_allocator

Crates.io version docs.rs

An (almost) drop-in replacement for phil-opp/linked-list-allocator. But it uses buddy system instead.

Usage

To use buddy_system_allocator for global allocator:

use buddy_system_allocator::LockedHeap;

#[global_allocator]
static HEAP_ALLOCATOR: LockedHeap = LockedHeap::<32>::empty();

To init the allocator:

unsafe {
    HEAP_ALLOCATOR.lock().init(heap_start, heap_size);
    // or
    HEAP_ALLOCATOR.lock().add_to_heap(heap_start, heap_end);
}

You can also use FrameAllocator and LockedHeapWithRescue, see their documentation for usage.

Features

  • alloc (default): Provide FrameAllocator and LockedFrameAllocator, which depend on a global allocator.
  • use_spin (default): Provide a LockedHeap type that implements the GlobalAlloc trait by using a spinlock.

License

Some code comes from phil-opp's linked-list-allocator.

Licensed under MIT License. Thanks phill-opp's linked-list-allocator for inspirations and interface.

Dependencies

~38KB