summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-18 21:43:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-18 21:43:40 +0000
commit0f592fbafe88f50e4bb74448a6c56642b61cb823 (patch)
tree2a9f3313760f5903a3959e0cbbaf6463347642d0 /cpukit/libmisc
parent+ Added object type field to object id. (diff)
downloadrtems-0f592fbafe88f50e4bb74448a6c56642b61cb823.tar.bz2
Modified references to task name.
Diffstat (limited to 'cpukit/libmisc')
-rw-r--r--cpukit/libmisc/stackchk/check.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpukit/libmisc/stackchk/check.c b/cpukit/libmisc/stackchk/check.c
index ac15973815..d843c07b2d 100644
--- a/cpukit/libmisc/stackchk/check.c
+++ b/cpukit/libmisc/stackchk/check.c
@@ -250,7 +250,8 @@ void Stack_check_report_blown_task(void)
"BLOWN STACK!!! Offending task(%p): id=0x%08x; name=0x%08x",
running,
running->Object.id,
- running->name);
+ *running->Object.name
+ );
fflush(stderr);
if (BSP_Configuration.User_multiprocessing_table)
@@ -386,7 +387,7 @@ void Stack_check_Dump_threads_usage(
printf( "0x%08x 0x%08x 0x%08x 0x%08x %8d %8d\n",
the_thread ? the_thread->Object.id : ~0,
- the_thread ? the_thread->name :
+ the_thread ? *the_thread->Object.name :
rtems_build_name('I', 'N', 'T', 'R'),
(unsigned32) stack->area,
(unsigned32) stack->area + (unsigned32) stack->size - 1,