bump-allocator-rs
A high performance #[global_allocator]
implementation using the bump-pointer allocation algorithm
Usage
As a rust custom global allocaor:
extern crate bump_allocator;
static GLOBAL: BumpPointer = BumpPointer;
As a malloc()
replacement:
LD_PRELOAD=target/release/libbump_allocator.so
# e.g.
# LD_PRELOAD=target/release/libbump_allocator.so ls ~