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§
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more