18 #ifndef _DECAF_INTERNAL_UTIL_CONCURRENT_SYNCHRONIZABLEIMPL_H_
19 #define _DECAF_INTERNAL_UTIL_CONCURRENT_SYNCHRONIZABLEIMPL_H_
28 namespace concurrent {
48 virtual bool tryLock();
50 virtual void unlock();
54 virtual void wait(
long long millisecs );
56 virtual void wait(
long long millisecs,
int nanos );
58 virtual void notify();
60 virtual void notifyAll();
Mutex object that offers recursive support on all platforms as well as providing the ability to use t...
Definition: Mutex.h:39
A convenience class used by some Decaf classes to implement the Synchronizable interface when there i...
Definition: SynchronizableImpl.h:36
#define DECAF_API
Definition: Config.h:29
The interface for all synchronizable objects (that is, objects that can be locked and unlocked)...
Definition: Synchronizable.h:37