Expand description
Global allocator statistics.
jemalloc tracks a wide variety of statistics. Many of them are cached, and
only refreshed when the jemalloc “epoch” is advanced. See the crate::epoch type
for more information.
Structs§
- active
- Total number of bytes in active pages allocated by the application.
- active_
mib - See
active. - allocated
- Total number of bytes allocated by the application.
- allocated_
mib - See
allocated. - mapped
- Total number of bytes in active extents mapped by the allocator.
- mapped_
mib - See
mapped. - metadata
- Total number of bytes dedicated to
jemallocmetadata. - metadata_
mib - See
metadata. - resident
- Total number of bytes in physically resident data pages mapped by the allocator.
- resident_
mib - See
resident. - retained
- 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_
mib - See
retained.