Searched refs:detachstate (Results 1 – 3 of 3) sorted by relevance
184 _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()191 *detachstate = PTHREAD_CREATE_DETACHED; in _thr_attr_getdetachstate()193 *detachstate = PTHREAD_CREATE_JOINABLE; in _thr_attr_getdetachstate()354 _thr_attr_setdetachstate(pthread_attr_t *attr, int detachstate) in _thr_attr_setdetachstate() argument358 (detachstate != PTHREAD_CREATE_DETACHED && in _thr_attr_setdetachstate()359 detachstate != PTHREAD_CREATE_JOINABLE)) in _thr_attr_setdetachstate()362 if (detachstate == PTHREAD_CREATE_DETACHED) in _thr_attr_setdetachstate()
73 int detachstate = PTHREAD_CREATE_DETACHED; in zk_thread_create() local78 detachstate = PTHREAD_CREATE_JOINABLE; in zk_thread_create()80 VERIFY0(pthread_attr_setdetachstate(&attr, detachstate)); in zk_thread_create()
4942 INTERCEPTOR_PTHREAD_ATTR_GET(detachstate, sizeof(int))