Struct tikv_jemalloc_ctl::opt::dss [−][src]
pub struct dss;
Expand description
The dss
(sbrk(2)
) allocation precedence as related to mmap(2)
allocation.
The following settings are supported if sbrk(2)
is supported by the
operating system: “disabled”, “primary”, and “secondary”; otherwise only
“disabled” is supported. The default is “secondary” if sbrk(2)
is
supported by the operating system; “disabled” otherwise.
Examples
use tikv_jemalloc_ctl::opt; let dss = opt::dss::read().unwrap(); println!("dss priority: {}", dss);