Searched refs:func (Results 1 – 3 of 3) sorted by relevance
/src/ |
A D | thread.c | 194 thread->wakeup_handle.func = RT_NULL; in _thread_init() 1074 rt_wakeup_func_t func = RT_NULL; in rt_thread_wakeup() local 1080 func = thread->wakeup_handle.func; in rt_thread_wakeup() 1081 thread->wakeup_handle.func = RT_NULL; in rt_thread_wakeup() 1084 if (func) in rt_thread_wakeup() 1086 ret = func(thread->wakeup_handle.user_data, thread); in rt_thread_wakeup() 1096 void rt_thread_wakeup_set(struct rt_thread *thread, rt_wakeup_func_t func, void* user_data) in rt_thread_wakeup_set() argument 1104 thread->wakeup_handle.func = func; in rt_thread_wakeup_set()
|
A D | kservice.c | 1113 void (*rt_assert_hook)(const char *ex, const char *func, rt_size_t line); 1120 void rt_assert_set_hook(void (*hook)(const char *ex, const char *func, rt_size_t line)) in rt_assert_set_hook() argument 1134 void rt_assert_handler(const char *ex_string, const char *func, rt_size_t line) in rt_assert_handler() argument 1149 … rt_kprintf("(%s) assertion failed at function:%s, line number:%d \n", ex_string, func, line); in rt_assert_handler() 1156 rt_assert_hook(ex_string, func, line); in rt_assert_handler()
|
A D | scheduler_comm.c | 261 thread->wakeup_handle.func = RT_NULL; in rt_sched_thread_ready()
|
Completed in 10 milliseconds