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

#55 in Memory management

Download history 3260/week @ 2025-02-01 4009/week @ 2025-02-08 4228/week @ 2025-02-15 4158/week @ 2025-02-22 5075/week @ 2025-03-01 4913/week @ 2025-03-08 7819/week @ 2025-03-15 6830/week @ 2025-03-22 4677/week @ 2025-03-29 6430/week @ 2025-04-05 4889/week @ 2025-04-12 4693/week @ 2025-04-19 5304/week @ 2025-04-26 7060/week @ 2025-05-03 7969/week @ 2025-05-10 6508/week @ 2025-05-17

27,708 downloads per month
Used in 16 crates (8 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