25 releases

new 0.12.0 Jan 12, 2026
0.11.0 Sep 21, 2024
0.10.0 Jul 1, 2024
0.9.1 Jan 27, 2024
0.1.2 Mar 18, 2019

#52 in Embedded development

Download history 17369/week @ 2025-09-22 14155/week @ 2025-09-29 14361/week @ 2025-10-06 15313/week @ 2025-10-13 16057/week @ 2025-10-20 17755/week @ 2025-10-27 20607/week @ 2025-11-03 20311/week @ 2025-11-10 22242/week @ 2025-11-17 20687/week @ 2025-11-24 26789/week @ 2025-12-01 25473/week @ 2025-12-08 19181/week @ 2025-12-15 9524/week @ 2025-12-22 10626/week @ 2025-12-29 16795/week @ 2026-01-05

57,187 downloads per month
Used in 29 crates (8 directly)

MIT license

33KB
662 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<32> = LockedHeap::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

~40KB