xref: /aosp_15_r20/external/musl/src/thread/pthread_attr_setdetachstate.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "pthread_impl.h"
2 
pthread_attr_setdetachstate(pthread_attr_t * a,int state)3 int pthread_attr_setdetachstate(pthread_attr_t *a, int state)
4 {
5 	if (state > 1U) return EINVAL;
6 	a->_a_detach = state;
7 	return 0;
8 }
9