Searched refs:PTHREAD_DYN_INIT (Results 1 – 5 of 5) sorted by relevance
13 #define PTHREAD_MUTEXATTR_IS_INITED(x) do { if ((x)->flag != PTHREAD_DYN_INIT) return EINVAL; } \35 mutex->flag = PTHREAD_DYN_INIT; in pthread_mutex_init()48 } else if (mutex->flag == PTHREAD_DYN_INIT) { in pthread_mutex_destroy()89 if (mutex->flag != PTHREAD_DYN_INIT) { in pthread_mutex_unlock()199 attr->flag = PTHREAD_DYN_INIT; in pthread_mutexattr_init()
42 cond->flag = PTHREAD_DYN_INIT; in pthread_cond_init()72 if (cond->flag != PTHREAD_DYN_INIT) in pthread_cond_broadcast()106 if (cond->flag != PTHREAD_DYN_INIT) in pthread_cond_signal()255 attr->flag = PTHREAD_DYN_INIT; in pthread_condattr_init()
27 attr->flag = PTHREAD_DYN_INIT; in pthread_attr_init()
136 if ((thread == NULL) || ((attr != NULL) && (attr->flag != PTHREAD_DYN_INIT)) in pthread_create()
45 #define PTHREAD_DYN_INIT 0X01 macro
Completed in 6 milliseconds