fix debug output of scheduler
When print the thread names, we should use "%.*s" instead of bare "%s".
This commit is contained in:
parent
a431a25699
commit
ad17bc2908
|
@ -226,10 +226,12 @@ void rt_schedule(void)
|
||||||
|
|
||||||
/* switch to new thread */
|
/* switch to new thread */
|
||||||
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
|
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
|
||||||
("[%d]switch to priority#%d thread:%s\n",
|
("[%d]switch to priority#%d "
|
||||||
rt_interrupt_nest,
|
"thread:%.*s(sp:0x%p), "
|
||||||
highest_ready_priority,
|
"from thread:%.*s(sp: 0x%p)\n",
|
||||||
to_thread->name));
|
rt_interrupt_nest, highest_ready_priority,
|
||||||
|
RT_NAME_MAX, to_thread->name, to_thread->sp,
|
||||||
|
RT_NAME_MAX, from_thread->name, from_thread->sp));
|
||||||
|
|
||||||
#ifdef RT_USING_OVERFLOW_CHECK
|
#ifdef RT_USING_OVERFLOW_CHECK
|
||||||
_rt_scheduler_stack_check(to_thread);
|
_rt_scheduler_stack_check(to_thread);
|
||||||
|
@ -279,11 +281,12 @@ void rt_schedule_insert_thread(struct rt_thread *thread)
|
||||||
|
|
||||||
/* set priority mask */
|
/* set priority mask */
|
||||||
#if RT_THREAD_PRIORITY_MAX <= 32
|
#if RT_THREAD_PRIORITY_MAX <= 32
|
||||||
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%s], the priority: %d\n",
|
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%.*s], the priority: %d\n",
|
||||||
thread->name, thread->current_priority));
|
RT_NAME_MAX, thread->name, thread->current_priority));
|
||||||
#else
|
#else
|
||||||
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
|
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
|
||||||
("insert thread[%s], the priority: %d 0x%x %d\n",
|
("insert thread[%.*s], the priority: %d 0x%x %d\n",
|
||||||
|
RT_NAME_MAX,
|
||||||
thread->name,
|
thread->name,
|
||||||
thread->number,
|
thread->number,
|
||||||
thread->number_mask,
|
thread->number_mask,
|
||||||
|
@ -316,11 +319,13 @@ void rt_schedule_remove_thread(struct rt_thread *thread)
|
||||||
temp = rt_hw_interrupt_disable();
|
temp = rt_hw_interrupt_disable();
|
||||||
|
|
||||||
#if RT_THREAD_PRIORITY_MAX <= 32
|
#if RT_THREAD_PRIORITY_MAX <= 32
|
||||||
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%s], the priority: %d\n",
|
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%.*s], the priority: %d\n",
|
||||||
thread->name, thread->current_priority));
|
RT_NAME_MAX, thread->name,
|
||||||
|
thread->current_priority));
|
||||||
#else
|
#else
|
||||||
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
|
RT_DEBUG_LOG(RT_DEBUG_SCHEDULER,
|
||||||
("remove thread[%s], the priority: %d 0x%x %d\n",
|
("remove thread[%.*s], the priority: %d 0x%x %d\n",
|
||||||
|
RT_NAME_MAX,
|
||||||
thread->name,
|
thread->name,
|
||||||
thread->number,
|
thread->number,
|
||||||
thread->number_mask,
|
thread->number_mask,
|
||||||
|
|
Loading…
Reference in New Issue