18 #ifndef _RTEMS_SCORE_HEAPINFO_H 19 #define _RTEMS_SCORE_HEAPINFO_H Run-time heap statistics.
uint64_t lifetime_freed
Lifetime number of bytes freed to this heap.
uint32_t frees
Total number of successful frees.
uint32_t allocs
Total number of successful allocations.
uint64_t lifetime_allocated
Lifetime number of bytes allocated from this heap.
uint32_t failed_allocs
Total number of failed allocations.
uint32_t max_free_blocks
Maximum number of free blocks ever.
uint32_t used_blocks
Current number of used blocks.
uint32_t resizes
Total number of successful resizes.
uintptr_t free_size
Current free size in bytes.
uintptr_t size
Size of the allocatable area in bytes.
uintptr_t min_free_size
Minimum free size ever in bytes.
uint32_t max_search
Maximum number of blocks searched ever.
uint32_t free_blocks
Current number of free blocks.
uint32_t searches
Total number of searches.