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

  /external/chromium_org/v8/src/
platform-cygwin.cc 401 class CygwinSemaphore : public Semaphore {
403 explicit CygwinSemaphore(int count) { sem_init(&sem_, 0, count); }
404 virtual ~CygwinSemaphore() { sem_destroy(&sem_); }
414 void CygwinSemaphore::Wait() {
431 bool CygwinSemaphore::Wait(int timeout) {
462 return new CygwinSemaphore(count);
  /external/v8/src/
platform-cygwin.cc 532 class CygwinSemaphore : public Semaphore {
534 explicit CygwinSemaphore(int count) { sem_init(&sem_, 0, count); }
535 virtual ~CygwinSemaphore() { sem_destroy(&sem_); }
545 void CygwinSemaphore::Wait() {
562 bool CygwinSemaphore::Wait(int timeout) {
593 return new CygwinSemaphore(count);

Completed in 27 milliseconds