Home | History | Annotate | Download | only in util

Lines Matching defs:thread

42    thrd_t thread;
49 ret = thrd_create( &thread, routine, param );
53 ret = thrd_create( &thread, routine, param );
58 return thread;
74 * Thread statistics.
77 /* Return the time of a thread's CPU time clock. */
79 u_thread_get_time_nano(thrd_t thread)
85 pthread_getcpuclockid(thread, &cid);
93 static inline bool u_thread_is_self(thrd_t thread)
98 return pthread_equal(pthread_self(), thread);