Sign in
mojo
/
mojo-tools
/
ad00c8ee4181b58d6df219cf3c839839221499a9
/
.
/
fusl
/
src
/
thread
/
thrd_join.c
blob: d8270ea51a93dcedfdafe5a72e94edf6ee379460 [
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
;
}