Home
last modified time | relevance | path

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

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Dpthread_cond_init.c108 if (sem_init (&(cv->semBlockQueue), 0, 0) != 0) in pthread_cond_init()
129 (void) sem_destroy (&(cv->semBlockQueue)); in pthread_cond_init()
Dpthread_cond_signal.c142 if (sem_post_multiple (&(cv->semBlockQueue), nSignalsToIssue) != 0) in ptw32_cond_unblock()
Dpthread_cond_destroy.c185 if (sem_destroy (&(cv->semBlockQueue)) != 0) in pthread_cond_destroy()
Dpthread_cond_wait.c431 if (sem_timedwait (&(cv->semBlockQueue), abstime) != 0) in ptw32_cond_timedwait()
Dimplement.h365 sem_t semBlockQueue; /* Queue up threads waiting for the */ member