Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
aee9b1526247f74e9b755b50e102b3b4ce2aac1d
/
.
/
src
/
thread
/
thrd_join.c
blob: ac6678939f6b3436818936eaf56b395479c4f3c2 [
file
] [
log
] [
blame
]
#include
<stdint.h>
#include
<threads.h>
int
__pthread_join
(
thrd_t
,
void
**);
int
thrd_join
(
thrd_t
t
,
int
*
res
)
{
void
*
pthread_res
;
__pthread_join
(
t
,
&
pthread_res
);
if
(
res
)
*
res
=
(
int
)(
intptr_t
)
pthread_res
;
return
thrd_success
;
}