rusty_malloc 0.2.1

A multithreaded yet simple memory allocator written in Rust.
Documentation
1
2
3
4
5
6
7
//! The [`RawMalloc`] and [`RustyMalloc`] allocators.

pub mod raw_malloc;
pub mod rusty_malloc;

pub use raw_malloc::RawMalloc;
pub use rusty_malloc::RustyMalloc;