浏览代码

[Kernel] export more symbols.

Bernard Xiong 10 年之前
父节点
当前提交
783753d943
共有 1 个文件被更改,包括 3 次插入0 次删除
  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);
 /*@}*/
 /*@}*/