Home
last modified time | relevance | path

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

/freebsd-13.1/lib/libthr/thread/
H A Dthr_join.c60 _thr_join(pthread_t pthread, void **thread_return) in _thr_join() argument
62 return (join_common(pthread, thread_return, NULL, false)); in _thr_join()
66 _pthread_timedjoin_np(pthread_t pthread, void **thread_return, in _pthread_timedjoin_np() argument
73 return (join_common(pthread, thread_return, abstime, false)); in _pthread_timedjoin_np()
77 _pthread_peekjoin_np(pthread_t pthread, void **thread_return) in _pthread_peekjoin_np() argument
79 return (join_common(pthread, thread_return, NULL, true)); in _pthread_peekjoin_np()
87 join_common(pthread_t pthread, void **thread_return, in join_common() argument
120 else if (thread_return != NULL) in join_common()
121 *thread_return = pthread->ret; in join_common()
167 if (thread_return != NULL) in join_common()
[all …]