From f71efa4281afb0a56081a40720b7ec829c1fdb50 Mon Sep 17 00:00:00 2001 From: "bernard.xiong@gmail.com" Date: Thu, 22 Mar 2012 06:01:22 +0000 Subject: [PATCH] use precision in list_thread function. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2004 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/finsh/cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/finsh/cmd.c b/components/finsh/cmd.c index e49f5d8379..d6edef00da 100644 --- a/components/finsh/cmd.c +++ b/components/finsh/cmd.c @@ -81,7 +81,7 @@ static long _list_thread(struct rt_list_node* list) for (node = list->next; node != list; node = node->next) { thread = rt_list_entry(node, struct rt_thread, list); - rt_kprintf("%-8s 0x%02x", thread->name, thread->current_priority); + rt_kprintf("%-8.*s 0x%02x", RT_NAME_MAX, thread->name, thread->current_priority); if (thread->stat == RT_THREAD_READY) rt_kprintf(" ready "); else if (thread->stat == RT_THREAD_SUSPEND) rt_kprintf(" suspend"); -- GitLab