67eaf9d81de134bdd8c131bb015114ea5b1b4e4a
[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 int __pthread_timedjoin_np(pthread_t t, void **res, const struct timespec *at)
9 {
10         int tmp, cs, r = 0;
11         __pthread_testcancel();
12         __pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
13         if (cs == PTHREAD_CANCEL_ENABLE) __pthread_setcancelstate(cs, 0);
14         if (t->detached) a_crash();
15         while ((tmp = t->join_futex) && r != ETIMEDOUT && r != EINVAL)
16                 r = __timedwait_cp(&t->join_futex, tmp, CLOCK_REALTIME, at, 0);
17         __pthread_setcancelstate(cs, 0);
18         if (r == ETIMEDOUT || r == EINVAL) return r;
19         a_barrier();
20         if (res) *res = t->result;
21         if (t->map_base) __munmap(t->map_base, t->map_size);
22         return 0;
23 }
24
25 int __pthread_join(pthread_t t, void **res)
26 {
27         return __pthread_timedjoin_np(t, res, 0);
28 }
29
30 int __pthread_tryjoin_np(pthread_t t, void **res)
31 {
32         return t->join_futex ? EBUSY : __pthread_join(t, res);
33 }
34
35 weak_alias(__pthread_tryjoin_np, pthread_tryjoin_np);
36 weak_alias(__pthread_timedjoin_np, pthread_timedjoin_np);
37 weak_alias(__pthread_join, pthread_join);