Home
last modified time | relevance | path

Searched refs:detachstate (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/lib/libthr/thread/
Dthr_attr.c182 _thr_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate) in _thr_attr_getdetachstate() argument
187 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() argument
405 (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()
/freebsd-12-stable/contrib/gcc/
Dgthr-posix.c212 int detachstate ATTRIBUTE_UNUSED) in pthread_attr_setdetachstate()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc4689 INTERCEPTOR_PTHREAD_ATTR_GET(detachstate, sizeof(int))