Lines Matching refs:thread
33 struct thread_node *thread = NULL; in timer_create() local
92 thread = &__timer_signal_thread_rclk; in timer_create()
93 if (! thread->exists) in timer_create()
95 if (__builtin_expect (__timer_thread_start (thread), in timer_create()
115 thread = __timer_thread_find_matching (&newtimer->attr, clock_id); in timer_create()
118 if (thread == NULL) in timer_create()
119 thread = __timer_thread_alloc (&newtimer->attr, clock_id); in timer_create()
122 if (__glibc_unlikely (thread == NULL)) in timer_create()
129 if (! thread->exists in timer_create()
130 && __builtin_expect (! __timer_thread_start (thread), 0)) in timer_create()
145 newtimer->thread = thread; in timer_create()
153 if (thread != NULL) in timer_create()
154 __timer_thread_dealloc (thread); in timer_create()