Home | History | Annotate | Download | only in src

Lines Matching defs:thread_t

42 struct thread_t {
52 thread_t* thread;
67 thread_t* thread_new_sized(const char* name, size_t work_queue_capacity) {
71 thread_t* ret = static_cast<thread_t*>(osi_calloc(sizeof(thread_t)));
104 thread_t* thread_new(const char* name) {
108 void thread_free(thread_t* thread) {
119 void thread_join(thread_t* thread) {
126 bool thread_post(thread_t* thread, thread_fn func, void* context) {
143 void thread_stop(thread_t* thread) {
148 bool thread_set_priority(thread_t* thread, int priority) {
162 bool thread_set_rt_priority(thread_t* thread, int priority) {
179 bool thread_is_self(const thread_t* thread) {
184 reactor_t* thread_get_reactor(const thread_t* thread) {
189 const char* thread_name(const thread_t* thread) {
198 thread_t* thread = start->thread;