Browse Source

[kernel][src] improve code (#7367)

半吊子内核开发 2 years ago
parent
commit
442330cc54
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/thread.c

+ 1 - 1
src/thread.c

@@ -588,8 +588,8 @@ rt_err_t rt_thread_yield(void)
     level = rt_hw_interrupt_disable();
     thread->remaining_tick = thread->init_tick;
     thread->stat |= RT_THREAD_STAT_YIELD;
-    rt_schedule();
     rt_hw_interrupt_enable(level);
+    rt_schedule();
 
     return RT_EOK;
 }