Searched defs:pthread_cond_internal_t (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/bionic/
H A Dpthread_cond.cpp107 struct pthread_cond_internal_t { struct
123 static_assert(sizeof(pthread_cond_t) == sizeof(pthread_cond_internal_t),
124 "pthread_cond_t should actually be pthread_cond_internal_t in implementation.");
129 "pthread_cond_t should fulfill the alignment requirement of pthread_cond_internal_t.");
131 static pthread_cond_internal_t* __get_internal_cond(pthread_cond_t* cond_interface) {
132 return reinterpret_cast<pthread_cond_internal_t*>(cond_interface);
136 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface);
148 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface);
156 static int __pthread_cond_pulse(pthread_cond_internal_t* cond, int thread_count) {
173 static int __pthread_cond_timedwait(pthread_cond_internal_t* con
[all...]

Completed in 28 milliseconds