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

/freebsd-10.1-release/lib/libthr/thread/
H A Dthr_join.c37 int _pthread_timedjoin_np(pthread_t pthread, void **thread_return,
55 _pthread_join(pthread_t pthread, void **thread_return) argument
57 return (join_common(pthread, thread_return, NULL));
61 _pthread_timedjoin_np(pthread_t pthread, void **thread_return, argument
68 return (join_common(pthread, thread_return, abstime));
76 join_common(pthread_t pthread, void **thread_return, argument
145 if (thread_return != NULL)
146 *thread_return = tmp;
/freebsd-10.1-release/lib/libkse/thread/
H A Dthr_join.c41 _pthread_join(pthread_t pthread, void **thread_return) argument
106 if (thread_return != NULL)
107 *thread_return = tmp;
154 if ((ret == 0) && (thread_return != NULL))
155 *thread_return = curthread->join_status.ret;

Completed in 44 milliseconds