kennystrawnmusic / lazy-heap

`lazy_heap`: A global allocator based on `slab_allocator_rs` that lazily initializes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lazy_heap: A wrapper around the slab_allocator_rs crate that allows for lazy initialization

Although there are plenty of global allocators in the crates.io repository, 3 years of tinkering with my own kernel code have taught me that, sometimes, the more time saved, the better. As such, I came up with this in the code to my own kernel but decided, because of just how useful it really is, to actually open it up to the masses.

Using this crate allows you to use a closure to initialize the heap automatically (lazily) on the first access attempt:

use lazy_heap::LazyHeap;

#[global_allocator]
pub static ALLOC: LazyHeap = LazyHeap::new(|| {
    // allocator initialization code goes here
});

This is a much more seamless, much less error-prone, set-it-and-forget-it way to initialize heap allocation than any other approach, because, with it, you can be guaranteed that any first attempt to use alloc will automatically initialize the heap for you.

About

`lazy_heap`: A global allocator based on `slab_allocator_rs` that lazily initializes

License:GNU Lesser General Public License v3.0


Languages

Language:Rust 100.0%