12 lines
256 B
Rust
12 lines
256 B
Rust
#![allow(clippy::integer_arithmetic)]
|
|
pub mod measure;
|
|
pub mod thread_mem_usage;
|
|
|
|
#[cfg(unix)]
|
|
extern crate jemallocator;
|
|
|
|
#[cfg(not(feature = "no-jemalloc"))]
|
|
#[cfg(unix)]
|
|
#[global_allocator]
|
|
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|