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