source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/thread/pthread_join.c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 1.1 KB
Line 
1#include "pthread_impl.h"
2#include <sys/mman.h>
3
4int __munmap(void *, size_t);
5void __pthread_testcancel(void);
6int __pthread_setcancelstate(int, int *);
7
8int __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->tid) && r != ETIMEDOUT && r != EINVAL)
16 r = __timedwait_cp(&t->tid, 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
25int __pthread_join(pthread_t t, void **res)
26{
27 return __pthread_timedjoin_np(t, res, 0);
28}
29
30int __pthread_tryjoin_np(pthread_t t, void **res)
31{
32 return t->tid ? EBUSY : __pthread_join(t, res);
33}
34
35weak_alias(__pthread_tryjoin_np, pthread_tryjoin_np);
36weak_alias(__pthread_timedjoin_np, pthread_timedjoin_np);
37weak_alias(__pthread_join, pthread_join);
Note: See TracBrowser for help on using the repository browser.