mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 08:01:38 +00:00
8 lines
135 B
C
8 lines
135 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_attr_getdetachstate(const pthread_attr_t *a, int *state)
|
|
{
|
|
*state = a->_a_detach;
|
|
return 0;
|
|
}
|