Home
last modified time | relevance | path

Searched refs:thread_return (Results 1 – 2 of 2) sorted by relevance

/dflybsd-src/lib/libthread_xu/thread/
H A Dthr_join.c36 int _pthread_timedjoin_np(pthread_t pthread, void **thread_return,
52 _pthread_join(pthread_t pthread, void **thread_return) in _pthread_join() argument
54 return (join_common(pthread, thread_return, NULL)); in _pthread_join()
58 _pthread_timedjoin_np(pthread_t pthread, void **thread_return, in _pthread_timedjoin_np() argument
65 return (join_common(pthread, thread_return, abstime)); in _pthread_timedjoin_np()
69 join_common(pthread_t pthread, void **thread_return, in join_common() argument
140 if (thread_return != NULL) in join_common()
141 *thread_return = tmp; in join_common()
/dflybsd-src/test/interbench/
H A Dinterbench.c479 void join_pthread(pthread_t th, void **thread_return) in join_pthread() argument
481 if (pthread_join(th, thread_return)) in join_pthread()