mirror of
https://github.com/fluencelabs/musl
synced 2025-05-24 05:01:32 +00:00
8 lines
126 B
C
8 lines
126 B
C
|
#include "pthread_impl.h"
|
||
|
|
||
|
int pthread_attr_setdetachstate(pthread_attr_t *a, int state)
|
||
|
{
|
||
|
a->__detach = state;
|
||
|
return 0;
|
||
|
}
|