Lines Matching defs:thread
53 thread_t* thread; member
109 void thread_free(thread_t* thread) { in thread_free()
120 void thread_join(thread_t* thread) { in thread_join()
127 bool thread_post(thread_t* thread, thread_fn func, void* context) { in thread_post()
144 void thread_stop(thread_t* thread) { in thread_stop()
149 bool thread_set_priority(thread_t* thread, int priority) { in thread_set_priority()
162 bool thread_set_rt_priority(thread_t* thread, int priority) { in thread_set_rt_priority()
178 bool thread_is_self(const thread_t* thread) { in thread_is_self()
183 reactor_t* thread_get_reactor(const thread_t* thread) { in thread_get_reactor()
188 const char* thread_name(const thread_t* thread) { in thread_name()
197 thread_t* thread = start->thread; in run_thread() local