Stxxl
1.3.2
|
Access to some useful malloc statistics. More...
#include <malloc.h>
Public Types | |
typedef int | return_type |
Public Member Functions | |
return_type | from_system_nmmap () const |
Returns number of bytes allocated from system not including mmapped regions. More... | |
return_type | free_chunks () const |
Returns number of free chunks. More... | |
return_type | used () const |
Number of bytes allocated and in use. More... | |
return_type | not_used () const |
Number of bytes allocated but not in use. More... | |
return_type | releasable () const |
Top-most, releasable (via malloc_trim) space (bytes) More... | |
return_type | max_allocated () const |
Maximum total allocated space (bytes) (always 0 ?) More... | |
return_type | fastbin_blocks () const |
Number of fastbin blocks. More... | |
return_type | fastbin_free () const |
Space available in freed fastbin blocks (bytes) More... | |
return_type | from_system_mmap () const |
Returns number of bytes allocated from system using mmap. More... | |
return_type | mmap_chunks () const |
Number of chunks allocated via mmap() More... | |
return_type | from_system_total () const |
Returns total number of bytes allocated from system including mmapped regions. More... | |
Access to some useful malloc statistics.
malloc is default C++ allocator
|
inline |
Number of fastbin blocks.
|
inline |
Space available in freed fastbin blocks (bytes)
|
inline |
Returns number of free chunks.
|
inline |
Returns number of bytes allocated from system using mmap.
Referenced by from_system_total().
|
inline |
Returns number of bytes allocated from system not including mmapped regions.
Referenced by from_system_total().
|
inline |
Returns total number of bytes allocated from system including mmapped regions.
References from_system_mmap(), and from_system_nmmap().
|
inline |
Maximum total allocated space (bytes) (always 0 ?)
|
inline |
Number of chunks allocated via mmap()
|
inline |
Number of bytes allocated but not in use.
|
inline |
Top-most, releasable (via malloc_trim) space (bytes)
|
inline |
Number of bytes allocated and in use.