Searched refs:detachstate (Results 1 – 3 of 3) sorted by relevance
194 pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate) in pthread_attr_setdetachstate() argument199 (detachstate == PTHREAD_CREATE_DETACHED || in pthread_attr_setdetachstate()200 detachstate == PTHREAD_CREATE_JOINABLE)) { in pthread_attr_setdetachstate()201 ap->detachstate = detachstate; in pthread_attr_setdetachstate()212 pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate) in pthread_attr_getdetachstate() argument217 detachstate != NULL) { in pthread_attr_getdetachstate()218 *detachstate = ap->detachstate; in pthread_attr_getdetachstate()
112 flag = ap->scope | ap->detachstate | ap->daemonstate | THR_SUSPENDED; in pthread_create()
1192 int detachstate; member