Searched refs:CygwinSemaphore (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/
H A Dplatform-cygwin.cc532 class CygwinSemaphore : public Semaphore { class in namespace:v8::internal
534 explicit CygwinSemaphore(int count) { sem_init(&sem_, 0, count); } function in class:v8::internal::CygwinSemaphore
535 virtual ~CygwinSemaphore() { sem_destroy(&sem_); }
545 void CygwinSemaphore::Wait() {
562 bool CygwinSemaphore::Wait(int timeout) {
593 return new CygwinSemaphore(count);

Completed in 50 milliseconds