Sign in
fuchsia
/
fuchsia
/
0ce75f1841a7e8f3aa7ae66214a6d7102abfbd74
/
.
/
zircon
/
third_party
/
ulib
/
musl
/
src
/
thread
/
thrd_detach.c
blob: 0ed0219ae3c2758b4a712bb865fbebd2a2154c79 [
file
]
#include
<threads.h>
#include
"threads_impl.h"
int
thrd_detach
(
thrd_t
t
)
{
switch
(
__pthread_detach
(
t
))
{
case
0
:
return
thrd_success
;
default
:
return
thrd_error
;
}
}