ralloc 1.0.0

An efficient alternative platform-agnostic allocator.
1
2
3
4
5
6
7
8
9
10
11
#![feature(test)]

extern crate ralloc;
extern crate test;

#[bench]
fn bench_sbrk(b: &mut test::Bencher) {
    b.iter(|| {
        ralloc::sbrk(200).unwrap()
    });
}