Struct tikv_jemalloc_ctl::config::malloc_conf [−][src]
pub struct malloc_conf;
Expand description
Default run-time options specified during jemalloc
’s build configuration.
The string will be empty unless --with-malloc-conf
was specified
during build configuration.
Examples
use tikv_jemalloc_ctl::config; let malloc_conf = config::malloc_conf::mib().unwrap(); println!("default malloc conf: {}", malloc_conf.read().unwrap());