bump-allocator-rs

A high performance #[global_allocator] implementation using the bump-pointer allocation algorithm

Usage

As a rust custom global allocaor:

```rust extern crate bump_allocator;

[global_allocator]

static GLOBAL: bumpallocator::BumpPointer = bumpallocator::BumpPointer;

fn main() { // Heap allocations here... let _boxed = Box::new(233); } ```

As a malloc() replacement:

```bash cargo build --release LDPRELOAD=target/release/libbumpallocator.so your_program

e.g.

LDPRELOAD=target/release/libbumpallocator.so ls ~

```