Lines Matching defs:thread
54 thread_t* thread; member
111 void thread_free(thread_t* thread) { in thread_free()
122 void thread_join(thread_t* thread) { in thread_join()
129 bool thread_post(thread_t* thread, thread_fn func, void* context) { in thread_post()
146 void thread_stop(thread_t* thread) { in thread_stop()
151 bool thread_set_priority(thread_t* thread, int priority) { in thread_set_priority()
164 bool thread_set_rt_priority(thread_t* thread, int priority) { in thread_set_rt_priority()
180 bool thread_is_self(const thread_t* thread) { in thread_is_self()
185 reactor_t* thread_get_reactor(const thread_t* thread) { in thread_get_reactor()
190 const char* thread_name(const thread_t* thread) { in thread_name()
199 thread_t* thread = start->thread; in run_thread() local