#allocator #jemalloc

jemalloc-ctl

A safe wrapper over jemalloc's control and introspection APIs

9 releases

0.5.0 May 25, 2022
0.3.3 Jun 16, 2019
0.2.0 Aug 2, 2018
0.1.4 Jun 21, 2018
0.1.1 Oct 27, 2017

#162 in Memory management

Download history 40104/week @ 2023-01-27 32332/week @ 2023-02-03 34210/week @ 2023-02-10 29449/week @ 2023-02-17 37559/week @ 2023-02-24 35445/week @ 2023-03-03 40812/week @ 2023-03-10 45264/week @ 2023-03-17 39428/week @ 2023-03-24 34212/week @ 2023-03-31 33671/week @ 2023-04-07 34484/week @ 2023-04-14 34848/week @ 2023-04-21 30743/week @ 2023-04-28 33029/week @ 2023-05-05 22733/week @ 2023-05-12

128,842 downloads per month
Used in fewer than 9 crates

MIT/Apache

2MB
51K SLoC

C 47K SLoC // 0.1% comments Rust 1.5K SLoC // 0.0% comments Visual Studio Project 1.5K SLoC Shell 380 SLoC // 0.3% comments C++ 371 SLoC // 0.1% comments Python 261 SLoC // 0.3% comments Visual Studio Solution 125 SLoC XSL 9 SLoC

jemalloc-ctl

Travis-CI Status Latest Version docs

A safe wrapper over jemalloc's mallctl*() control and introspection APIs.

Documentation

Platform support

Supported on all platforms supported by the jemallocator crate.

Example


use std::thread;
use std::time::Duration;
use jemalloc_ctl::{stats, epoch};

#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;

fn main() {
    // Obtain a MIB for the `epoch`, `stats.allocated`, and
    // `atats.resident` keys:
    let e = epoch::mib().unwrap();
    let allocated = stats::allocated::mib().unwrap();
    let resident = stats::resident::mib().unwrap();
    
    loop {
        // Many statistics are cached and only updated 
        // when the epoch is advanced:
        e.advance().unwrap();
        
        // Read statistics using MIB key:
        let allocated = allocated.read().unwrap();
        let resident = resident.read().unwrap();
        println!("{} bytes allocated/{} bytes resident", allocated, resident);
        thread::sleep(Duration::from_secs(10));
    }
}

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in jemalloc-ctl by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies