Index of values

G
get_heap_profile [Gperftools]
get_memory_release_rate [Gperftools]

Gets the release rate.

get_numeric_property [Gperftools]
H
heap_profiler_dump [Gperftools]
heap_profiler_start [Gperftools]
heap_profiler_stop [Gperftools]
I
is_heap_profiler_running [Gperftools]
K
known_properties [Gperftools]

Some currently useful properties : generic.current_allocated_bytes - number of bytes used by the application. This will not typically match the memory use reported by the OS, because it does not include TCMalloc overhead or memory fragmentation., generic.heap_size - bytes of system memory reserved by TCMalloc., tcmalloc.pageheap_free_bytes - number of bytes in free, mapped pages in page heap. These bytes can be used to fulfill allocation requests. They always count towards virtual memory usage, and unless the underlying memory is swapped out by the OS, they also count towards physical memory usage., tcmalloc.pageheap_unmapped_bytes - number of bytes in free, unmapped pages in page heap. These are bytes that have been released back to the OS, possibly by one of the MallocExtension "Release" calls. They can be used to fulfill allocation requests, but typically incur a page fault. They always count towards virtual memory usage, and depending on the OS, typically do not count towards physical memory usage., tcmalloc.max_total_thread_cache_bytes - a limit to how much memory TCMalloc dedicates for small objects. Higher numbers trade off more memory use for -- in some situations -- improved efficiency. Writable., tcmalloc.current_total_thread_cache_bytes - a measure of some of the memory TCMalloc is using (for small objects)., tcmalloc.aggressive_memory_decommit - when returning chunk of memory to system, try to return all neighboring free chunks as well. Writable.

R
release_free_memory [Gperftools]

Release as much memory as possible to operating system

S
set_memory_release_rate [Gperftools]

Sets the rate at which we release unused memory to the system.

set_numeric_property [Gperftools]
V
version [Gperftools]