966b4ab0d11eabf4ab208e44e7ca290a10578c51
[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_join(pthread_t t, void **res)
9 {
10         int tmp, cs;
11         __pthread_testcancel();
12         __pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
13         if (cs == PTHREAD_CANCEL_ENABLE) __pthread_setcancelstate(cs, 0);
14         while ((tmp = t->tid)) __timedwait_cp(&t->tid, tmp, 0, 0, 0);
15         __pthread_setcancelstate(cs, 0);
16         if (res) *res = t->result;
17         if (t->map_base) __munmap(t->map_base, t->map_size);
18         return 0;
19 }
20
21 weak_alias(__pthread_join, pthread_join);