3 unstable releases
0.2.1 | Sep 5, 2024 |
---|---|
0.2.0 | Sep 5, 2024 |
0.1.0 | Sep 3, 2024 |
#257 in Memory management
67 downloads per month
75KB
1.5K
SLoC
Rusty Malloc
A multithreaded yet simple memory allocator written in Rust.
This crate is a hobby project I did to get hands-on experience with unsafe Rust. Nevertheless, I made an effort to write good documentation so that it can also serve as a learning resource.
Usage
To use this crate you can add rusty_malloc
as a dependency in your project's Cargo.toml
.
[dependencies]
rusty_malloc = "0.2"
use rusty_malloc::RustyMalloc;
use rusty_malloc::growers::BrkGrower;
#[global_allocator]
static ALLOCATOR: RustyMalloc<BrkGrower> = unsafe { RustyMalloc::with_grower(BrkGrower::new(4096)) };
fn main() {
let v1: Vec<u32> = vec![1, 2, 3];
println!("Brk is cool {:?}", v1);
}
To read more about the allocator's mode of operation, check out the documentation.
Dependencies
~345–495KB