Browse Source

Merge pull request #2092 from RT-Thread/kernel_cleanup

Kernel cleanup
Bernard Xiong 6 years ago
parent
commit
a795c05097
2 changed files with 2 additions and 7 deletions
  1. 0 5
      components/lwp/lwp_syscall.h
  2. 2 2
      src/scheduler.c

+ 0 - 5
components/lwp/lwp_syscall.h

@@ -5,11 +5,6 @@
  *
  *
  * Change Logs:
  * Change Logs:
  * Date           Author       Notes
  * Date           Author       Notes
- * 2006-03-18     Bernard      the first version
- * 2006-04-25     Bernard      add rt_hw_context_switch_interrupt declaration
- * 2006-09-24     Bernard      add rt_hw_context_switch_to declaration
- * 2012-12-29     Bernard      add rt_hw_exception_install declaration
- * 2017-10-17     Hichard      add some micros
  * 2018-12-10     Jesven       fix complie error in iar and keil
  * 2018-12-10     Jesven       fix complie error in iar and keil
  */
  */
 
 

+ 2 - 2
src/scheduler.c

@@ -445,8 +445,8 @@ 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 "
                         ("[%d]switch to priority#%d "
-                         "thread:%.*s(sp:0x%p), "
-                         "from thread:%.*s(sp: 0x%p)\n",
+                         "thread:%.*s(sp:0x%08x), "
+                         "from thread:%.*s(sp: 0x%08x)\n",
                          rt_interrupt_nest, highest_ready_priority,
                          rt_interrupt_nest, highest_ready_priority,
                          RT_NAME_MAX, to_thread->name, to_thread->sp,
                          RT_NAME_MAX, to_thread->name, to_thread->sp,
                          RT_NAME_MAX, from_thread->name, from_thread->sp));
                          RT_NAME_MAX, from_thread->name, from_thread->sp));