summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-11-28 11:53:55 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-11-28 13:09:11 +0100
commitd006b46df31f6e5f28237fe40eafb135e684b739 (patch)
treee3f5956ae801329ae8f2891e9a62734833daa1d2 /cpukit/libmisc/shell
parentscore: Return heap stats via _Heap_Get_information (diff)
downloadrtems-d006b46df31f6e5f28237fe40eafb135e684b739.tar.bz2
score: Add heap statistics
Add lifetime bytes allocated and freed since they were present in the malloc statistics. Add number of failed allocations.
Diffstat (limited to 'cpukit/libmisc/shell')
-rw-r--r--cpukit/libmisc/shell/print_heapinfo.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/cpukit/libmisc/shell/print_heapinfo.c b/cpukit/libmisc/shell/print_heapinfo.c
index 4ac9c96f88..b1e34f2e29 100644
--- a/cpukit/libmisc/shell/print_heapinfo.c
+++ b/cpukit/libmisc/shell/print_heapinfo.c
@@ -43,17 +43,23 @@ void rtems_shell_print_heap_stats(
"Minimum free size ever in bytes: %12" PRIuPTR "\n"
"Maximum number of free blocks ever: %12" PRIu32 "\n"
"Maximum number of blocks searched ever: %12" PRIu32 "\n"
+ "Lifetime number of bytes allocated: %12" PRIu64 "\n"
+ "Lifetime number of bytes freed: %12" PRIu64 "\n"
+ "Total number of searches: %12" PRIu32 "\n"
"Total number of successful allocations: %12" PRIu32 "\n"
- "Total number of searches ever: %12" PRIu32 "\n"
- "Total number of successful calls to free: %12" PRIu32 "\n"
+ "Total number of failed allocations: %12" PRIu32 "\n"
+ "Total number of successful frees: %12" PRIu32 "\n"
"Total number of successful resizes: %12" PRIu32 "\n",
s->instance,
s->size,
s->min_free_size,
s->max_free_blocks,
s->max_search,
- s->allocs,
+ s->lifetime_allocated,
+ s->lifetime_freed,
s->searches,
+ s->allocs,
+ s->failed_allocs,
s->frees,
s->resizes
);