Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d4-s2-release
/
.
/
src
/
thread
/
thrd_join.c
blob: 0d5fd302d1810425a49f52fb3e8c7efe83f9e719 [
file
] [
log
] [
blame
] [
edit
]
#include
<stdint.h>
#include
<threads.h>
#include
<pthread.h>
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
;
}