HomeSort by: relevance | last modified time | path
    Searched defs:pthread_join (Results 1 - 4 of 4) sorted by relevancy

  /src/tests/lib/libpthread/
t_join.c 53 ATF_TC(pthread_join); variable
54 ATF_TC_HEAD(pthread_join, tc)
58 "Checks basic error conditions in pthread_join(3)");
61 ATF_TC_BODY(pthread_join, tc)
66 PTHREAD_REQUIRE(pthread_join(thread, NULL));
92 rv = pthread_join(caller, NULL);
116 PTHREAD_REQUIRE(pthread_join(thread[i], &val));
127 rv = pthread_join(thread[i], NULL);
174 ATF_TP_ADD_TC(tp, pthread_join);
  /src/lib/libpthread/
pthread.h 52 int pthread_join(pthread_t, void **);
363 #define pthread_join __libc_thr_join macro
pthread.c 146 __strong_alias(__libc_thr_join,pthread_join)
706 pthread_join(pthread_t thread, void **valptr) function
721 /* IEEE Std 1003.1 says pthread_join() never returns EINTR. */
732 * cancelled, pthread_join() must not have succeeded.
  /src/crypto/external/bsd/openssh/dist/
auth-pam.c 152 #define pthread_join fake_pthread_join macro
243 pthread_join(sp_pthread_t thread, void **value) function
626 pthread_join(ctxt->pam_thread, NULL);

Completed in 26 milliseconds