summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-01-21 15:22:46 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-01-22 07:52:50 +0100
commit50a50313cc82271c6eb2d2a9031f648648a053a3 (patch)
treed63d05c280b537cfe00b854e162203c8eff31fdd /cpukit/libmisc/shell
parentFilesystem: Delete node type operation (diff)
downloadrtems-50a50313cc82271c6eb2d2a9031f648648a053a3.tar.bz2
score: Delete superfluous Heap_Statistics::instance
This value depends on the _Heap_Initialize() call sequence and carries no useful information.
Diffstat (limited to 'cpukit/libmisc/shell')
-rw-r--r--cpukit/libmisc/shell/print_heapinfo.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpukit/libmisc/shell/print_heapinfo.c b/cpukit/libmisc/shell/print_heapinfo.c
index b1e34f2e29..f99f0a9aa3 100644
--- a/cpukit/libmisc/shell/print_heapinfo.c
+++ b/cpukit/libmisc/shell/print_heapinfo.c
@@ -38,7 +38,6 @@ void rtems_shell_print_heap_stats(
)
{
printf(
- "Instance number: %12" PRIu32 "\n"
"Size of the allocatable area in bytes: %12" PRIuPTR "\n"
"Minimum free size ever in bytes: %12" PRIuPTR "\n"
"Maximum number of free blocks ever: %12" PRIu32 "\n"
@@ -50,7 +49,6 @@ void rtems_shell_print_heap_stats(
"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,