Sign in
cobalt
/
cobalt
/
08336faa599332e3e3bf29b7ad38ef023018b55e
/
.
/
third_party
/
musl
/
src
/
thread
/
thrd_exit.c
blob: b66bd99695ca63da6a7f2cc9dbc3f42e88d2e255 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
#include
<threads.h>
_Noreturn
void
__pthread_exit
(
void
*);
_Noreturn
void
thrd_exit
(
int
result
)
{
__pthread_exit
((
void
*)(
intptr_t
)
result
);
}