HomeSort by relevance Sort by last modified time
    Searched refs:semBlockLock (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_cond_destroy.c 139 if (ptw32_semwait (&(cv->semBlockLock)) != 0) /* Non-cancelable */
152 (void) sem_post (&(cv->semBlockLock));
167 if (sem_post (&(cv->semBlockLock)) != 0)
181 if (sem_destroy (&(cv->semBlockLock)) != 0)
pthread_cond_wait.c 51 * semBlockLock - bin.semaphore
65 * sem_wait( semBlockLock );
67 * sem_post( semBlockLock );
84 * sem_post( semBlockLock ); // open the gate.
95 * sem_wait( semBlockLock );
98 * sem_post( semBlockLock );
109 * } sem_post( semBlockLock ); // open the gate
139 * sem_wait( semBlockLock ); // close the gate
170 * semBlockLock - bin.semaphore
183 * sem_wait( semBlockLock );
    [all...]
pthread_cond_init.c 102 if (sem_init (&(cv->semBlockLock), 0, 1) != 0)
132 (void) sem_destroy (&(cv->semBlockLock));
pthread_cond_signal.c 51 * therefore semBlockLock is needed.
63 * semBlockLock
113 if (ptw32_semwait (&(cv->semBlockLock)) != 0)
implement.h 367 sem_t semBlockLock; /* Semaphore that guards access to */
    [all...]

Completed in 39 milliseconds