diff --git a/components/pthreads/mqueue.c b/components/pthreads/mqueue.c index 8886988a1f8ba46e39fa8f66fcad5df53a0703ad..7b669dc3678093958fcb2b19fb4b35d478bdc6cb 100644 --- a/components/pthreads/mqueue.c +++ b/components/pthreads/mqueue.c @@ -21,6 +21,7 @@ * Date Author Notes */ +#include #include "mqueue.h" #include "pthread_internal.h" diff --git a/components/pthreads/semaphore.c b/components/pthreads/semaphore.c index a1bf42e899a6a41c563548800cae1ab918e46865..ae69e0d1bc7547c7a9019710c2907e610fd71632 100644 --- a/components/pthreads/semaphore.c +++ b/components/pthreads/semaphore.c @@ -23,6 +23,7 @@ */ #include +#include #include "semaphore.h" #include "pthread_internal.h" diff --git a/src/scheduler.c b/src/scheduler.c index 4889083f0ad895bc502b3270916e8464fe8086c9..cefc5b8c416a6a2dc0db2a79524c54601691ee27 100644 --- a/src/scheduler.c +++ b/src/scheduler.c @@ -226,10 +226,12 @@ void rt_schedule(void) /* switch to new thread */ RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, - ("[%d]switch to priority#%d thread:%s\n", - rt_interrupt_nest, - highest_ready_priority, - to_thread->name)); + ("[%d]switch to priority#%d " + "thread:%.*s(sp:0x%p), " + "from thread:%.*s(sp: 0x%p)\n", + 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 _rt_scheduler_stack_check(to_thread); @@ -279,11 +281,12 @@ void rt_schedule_insert_thread(struct rt_thread *thread) /* set priority mask */ #if RT_THREAD_PRIORITY_MAX <= 32 - RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%s], the priority: %d\n", - thread->name, thread->current_priority)); + RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%.*s], the priority: %d\n", + RT_NAME_MAX, thread->name, thread->current_priority)); #else 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->number, thread->number_mask, @@ -316,11 +319,13 @@ void rt_schedule_remove_thread(struct rt_thread *thread) temp = rt_hw_interrupt_disable(); #if RT_THREAD_PRIORITY_MAX <= 32 - RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%s], the priority: %d\n", - thread->name, thread->current_priority)); + RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("remove thread[%.*s], the priority: %d\n", + RT_NAME_MAX, thread->name, + thread->current_priority)); #else 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->number, thread->number_mask,