Searched refs:detachstate (Results 1 – 3 of 3) sorted by relevance
182 _thr_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate) in _thr_attr_getdetachstate() argument187 if (attr == NULL || *attr == NULL || detachstate == NULL) in _thr_attr_getdetachstate()193 *detachstate = PTHREAD_CREATE_DETACHED; in _thr_attr_getdetachstate()196 *detachstate = PTHREAD_CREATE_JOINABLE; in _thr_attr_getdetachstate()399 _thr_attr_setdetachstate(pthread_attr_t *attr, int detachstate) in _thr_attr_setdetachstate() argument405 (detachstate != PTHREAD_CREATE_DETACHED && in _thr_attr_setdetachstate()406 detachstate != PTHREAD_CREATE_JOINABLE)) in _thr_attr_setdetachstate()410 if (detachstate == PTHREAD_CREATE_DETACHED) in _thr_attr_setdetachstate()
212 int detachstate ATTRIBUTE_UNUSED) in pthread_attr_setdetachstate()
4689 INTERCEPTOR_PTHREAD_ATTR_GET(detachstate, sizeof(int))