tlsf 1.1.0

An implementation of the Two-Level Segregated Fit (TLSF) allocator with optimized memory footprint
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use self::anchor::Anchor;
pub use self::common::Block;
pub use self::free::FreeBlock;
pub use self::offset::Offset;
pub use self::used::UsedBlock;

mod anchor;
mod common;
mod free;
mod offset;
mod used;