mirror of
https://github.com/fluencelabs/musl
synced 2025-07-02 08:01:58 +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;
|
||
|
}
|