summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-14 22:53:39 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-14 22:53:39 +0000
commit33eeeb28dcd7cb846156242a03818e25ccf9f061 (patch)
tree78235cf1b5eae49691ffb9632f2ef5794b119369 /cpukit
parent2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-33eeeb28dcd7cb846156242a03818e25ccf9f061.tar.bz2
2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/stackchk/check.c: Fix alignment of output.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/libmisc/stackchk/check.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index a2fe6e5969..98a11aa8d4 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * libmisc/stackchk/check.c: Fix alignment of output.
+
+2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* libmisc/monitor/monitor.h: Add network commands that were in the
network supplement but not in the code.
* libmisc/monitor/mon-network.c: New file.
diff --git a/cpukit/libmisc/stackchk/check.c b/cpukit/libmisc/stackchk/check.c
index 5134936a3f..11bbcecead 100644
--- a/cpukit/libmisc/stackchk/check.c
+++ b/cpukit/libmisc/stackchk/check.c
@@ -410,7 +410,7 @@ void Stack_check_Dump_threads_usage(
(*print_handler)(
print_context,
- "0x%08" PRIx32 " %4s 0x%p - 0x%p %8" PRId32 " %8" PRId32 "\n",
+ "0x%08" PRIx32 " %4s %08p - %08p %8" PRId32 " %8" PRId32 "\n",
the_thread ? the_thread->Object.id : ~0,
name,
stack->area,
@@ -453,7 +453,7 @@ void rtems_stack_checker_report_usage_with_plugin(
(*print)( context, "Stack usage by thread\n");
(*print)( context,
- " ID NAME LOW HIGH AVAILABLE USED\n"
+ " ID NAME LOW HIGH AVAILABLE USED\n"
);
/* iterate over all threads and dump the usage */