Struct tikv_jemalloc_ctl::opt::abort [−][src]
pub struct abort;
Expand description
Whether jemalloc
calls abort(3)
on most warnings.
This is disabled by default unless --enable-debug
was specified during
build configuration.
Examples
use tikv_jemalloc_ctl::opt; let abort = opt::abort::mib().unwrap(); println!("abort on warning: {}", abort.read().unwrap());