| 879 | #endif /* RT_DEBUGING_CONTEXT */ |
| 880 | |
| 881 | rt_inline rt_bool_t rt_in_thread_context(void) |
| 882 | { |
| 883 | return rt_thread_self() != RT_NULL && rt_interrupt_get_nest() == 0; |
| 884 | } |
| 885 | |
| 886 | /* is scheduler available */ |
| 887 | rt_inline rt_bool_t rt_scheduler_is_available(void) |
no test coverage detected