Sign in
cobalt
/
cobalt
/
788710a0d7b1b8d8e2340dd5fad5e8783a239862
/
.
/
third_party
/
musl
/
src
/
thread
/
thrd_exit.c
blob: 9b291ae3db2de16b19c90f504c8e9e7102e10adb [
file
] [
log
] [
blame
]
#include
<threads.h>
#include
<pthread.h>
#include
<stdint.h>
_Noreturn
void
thrd_exit
(
int
result
)
{
__pthread_exit
((
void
*)(
intptr_t
)
result
);
}