Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/pthread/
Dpthread.c261 switch (attr->detachstate) { in pthread_create()
766 attr->detachstate = PTHREAD_CREATE_JOINABLE; in pthread_attr_init()
796 int pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate) in pthread_attr_getdetachstate() argument
799 *detachstate = attr->detachstate; in pthread_attr_getdetachstate()
805 int pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate) in pthread_attr_setdetachstate() argument
808 switch (detachstate) { in pthread_attr_setdetachstate()
810 attr->detachstate = PTHREAD_CREATE_DETACHED; in pthread_attr_setdetachstate()
813 attr->detachstate = PTHREAD_CREATE_JOINABLE; in pthread_attr_setdetachstate()