Struct jemalloc_ctl::stats::retained
source · [−]pub struct retained;Expand description
Total number of bytes in virtual memory mappings that were retained
rather than being returned to the operating system via e.g. munmap(2).
Retained virtual memory is typically untouched, decommitted, or purged,
so it has no strongly associated physical memory. Retained memory is
excluded from mapped memory statistics, e.g. mapped.
This statistic is cached, and is only refreshed when the epoch is
advanced. See the crate::epoch type for more information.
This corresponds to stats.retained in jemalloc’s API.
Examples
use jemalloc_ctl::{epoch, stats};
let e = epoch::mib().unwrap();
let retained = stats::retained::mib().unwrap();
e.advance().unwrap();
let size = retained.read().unwrap();
println!("{} bytes of total retained data", size);Implementations
sourceimpl retained
impl retained
sourcepub fn mib() -> Result<retained_mib>
pub fn mib() -> Result<retained_mib>
Returns Management Information Base (MIB)
This value can be used to access the key without doing string lookup.
sourcepub fn name() -> &'static Name
pub fn name() -> &'static Name
Key crate::keys::Name.
Auto Trait Implementations
impl RefUnwindSafe for retained
impl Send for retained
impl Sync for retained
impl Unpin for retained
impl UnwindSafe for retained
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more