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

/external/v8/src/
H A Dplatform-freebsd.cc605 class FreeBSDSemaphore : public Semaphore { class in namespace:v8::internal
607 explicit FreeBSDSemaphore(int count) { sem_init(&sem_, 0, count); } function in class:v8::internal::FreeBSDSemaphore
608 virtual ~FreeBSDSemaphore() { sem_destroy(&sem_); }
618 void FreeBSDSemaphore::Wait() {
627 bool FreeBSDSemaphore::Wait(int timeout) {
657 return new FreeBSDSemaphore(count);

Completed in 46 milliseconds