1
2
3
4
5
6
7
8
9
pub mod measure;
pub mod thread_mem_usage;

#[cfg(unix)]
extern crate jemallocator;

#[cfg(unix)]
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;