jemallocator 0.1.9

A Rust allocator backed by jemalloc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate jemallocator;

use jemallocator::Jemalloc;

#[global_allocator]
static A: Jemalloc = Jemalloc;

#[test]
fn smoke() {
    let a = Box::new(3_u32);
    assert!(unsafe { jemallocator::usable_size(&*a) } >= 4);
}