Searched refs:detachstate (Results 1 – 4 of 4) sorted by relevance
40 _pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate) in _pthread_attr_getdetachstate() argument45 if (attr == NULL || *attr == NULL || detachstate == NULL) in _pthread_attr_getdetachstate()51 *detachstate = PTHREAD_CREATE_DETACHED; in _pthread_attr_getdetachstate()54 *detachstate = PTHREAD_CREATE_JOINABLE; in _pthread_attr_getdetachstate()
41 _pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate) in _pthread_attr_setdetachstate() argument47 (detachstate != PTHREAD_CREATE_DETACHED && in _pthread_attr_setdetachstate()48 detachstate != PTHREAD_CREATE_JOINABLE)) in _pthread_attr_setdetachstate()52 if (detachstate == PTHREAD_CREATE_DETACHED) in _pthread_attr_setdetachstate()
176 _pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate) in _pthread_attr_getdetachstate() argument181 if (attr == NULL || *attr == NULL || detachstate == NULL) in _pthread_attr_getdetachstate()187 *detachstate = PTHREAD_CREATE_DETACHED; in _pthread_attr_getdetachstate()190 *detachstate = PTHREAD_CREATE_JOINABLE; in _pthread_attr_getdetachstate()379 _pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate) in _pthread_attr_setdetachstate() argument385 (detachstate != PTHREAD_CREATE_DETACHED && in _pthread_attr_setdetachstate()386 detachstate != PTHREAD_CREATE_JOINABLE)) in _pthread_attr_setdetachstate()390 if (detachstate == PTHREAD_CREATE_DETACHED) in _pthread_attr_setdetachstate()
212 int detachstate ATTRIBUTE_UNUSED) in pthread_attr_setdetachstate()