#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

#42 in Memory management

Download history 3176/week @ 2024-07-29 2978/week @ 2024-08-05 3821/week @ 2024-08-12 3390/week @ 2024-08-19 2764/week @ 2024-08-26 3450/week @ 2024-09-02 3934/week @ 2024-09-09 3072/week @ 2024-09-16 4359/week @ 2024-09-23 4121/week @ 2024-09-30 3295/week @ 2024-10-07 4549/week @ 2024-10-14 4452/week @ 2024-10-21 4303/week @ 2024-10-28 5079/week @ 2024-11-04 3917/week @ 2024-11-11

18,098 downloads per month
Used in 10 crates (6 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

~37KB