#jemalloc #control-api #allocator #api-bindings

no-std tikv-jemalloc-ctl

A safe wrapper over jemalloc's control and introspection APIs

6 releases

0.6.0 Jul 14, 2024
0.5.4 Jul 27, 2023
0.5.0 May 24, 2022
0.4.2 Aug 9, 2021
0.4.0 Jul 21, 2020

#218 in Memory management

Download history 188065/week @ 2024-09-11 192100/week @ 2024-09-18 198775/week @ 2024-09-25 215553/week @ 2024-10-02 227148/week @ 2024-10-09 236499/week @ 2024-10-16 252372/week @ 2024-10-23 232670/week @ 2024-10-30 246463/week @ 2024-11-06 230914/week @ 2024-11-13 221923/week @ 2024-11-20 138189/week @ 2024-11-27 207517/week @ 2024-12-04 248275/week @ 2024-12-11 148727/week @ 2024-12-18 46132/week @ 2024-12-25

683,526 downloads per month
Used in 82 crates (17 directly)

MIT/Apache

2MB
52K SLoC

C 47K SLoC // 0.1% comments Rust 2K SLoC // 0.0% comments Visual Studio Project 1.5K SLoC M4 658 SLoC // 0.1% comments 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 tikv-jemallocator crate.

Example


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

#[global_allocator]
static ALLOC: tikv_jemallocator::Jemalloc = tikv_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