make inadvertently exposed __pthread_{timed,try}join_np functions static
[musl] / src / thread / pthread_join.c
1 #include "pthread_impl.h"
2 #include <sys/mman.h>
3
4 int __munmap(void *, size_t);
5 void __pthread_testcancel(void);
6 int __pthread_setcancelstate(int, int *);
7
8 static int __pthread_timedjoin_np(pthread_t t, void **res, const struct timespec *at)
9 {
10         int state, cs, r = 0;
11         __pthread_testcancel();
12         __pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
13         if (cs == PTHREAD_CANCEL_ENABLE) __pthread_setcancelstate(cs, 0);
14         while ((state = t->detach_state) && r != ETIMEDOUT && r != EINVAL) {
15                 if (state >= DT_DETACHED) a_crash();
16                 r = __timedwait_cp(&t->detach_state, state, CLOCK_REALTIME, at, 0);
17         }
18         __pthread_setcancelstate(cs, 0);
19         if (r == ETIMEDOUT || r == EINVAL) return r;
20         a_barrier();
21         if (res) *res = t->result;
22         if (t->map_base) __munmap(t->map_base, t->map_size);
23         return 0;
24 }
25
26 int __pthread_join(pthread_t t, void **res)
27 {
28         return __pthread_timedjoin_np(t, res, 0);
29 }
30
31 static int __pthread_tryjoin_np(pthread_t t, void **res)
32 {
33         return t->detach_state==DT_JOINABLE ? EBUSY : __pthread_join(t, res);
34 }
35
36 weak_alias(__pthread_tryjoin_np, pthread_tryjoin_np);
37 weak_alias(__pthread_timedjoin_np, pthread_timedjoin_np);
38 weak_alias(__pthread_join, pthread_join);