Browse Source

[Kernel] export more symbols.

Bernard Xiong 9 năm trước cách đây
mục cha
commit
783753d943
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      src/scheduler.c

+ 3 - 0
src/scheduler.c

@@ -371,6 +371,7 @@ void rt_enter_critical(void)
     /* enable interrupt */
     /* enable interrupt */
     rt_hw_interrupt_enable(level);
     rt_hw_interrupt_enable(level);
 }
 }
+RTM_EXPORT(rt_enter_critical);
 
 
 /**
 /**
  * This function will unlock the thread scheduler.
  * This function will unlock the thread scheduler.
@@ -398,6 +399,7 @@ void rt_exit_critical(void)
         rt_hw_interrupt_enable(level);
         rt_hw_interrupt_enable(level);
     }
     }
 }
 }
+RTM_EXPORT(rt_exit_critical);
 
 
 /**
 /**
  * Get the scheduler lock level
  * Get the scheduler lock level
@@ -408,5 +410,6 @@ rt_uint16_t rt_critical_level(void)
 {
 {
     return rt_scheduler_lock_nest;
     return rt_scheduler_lock_nest;
 }
 }
+RTM_EXPORT(rt_critical_level);
 /*@}*/
 /*@}*/