1
0

Removed TimedWait from cEvent.

Unsupported on MacOS.
This commit is contained in:
madmaxoft
2013-09-05 15:22:16 +02:00
committed by Tiger Wang
parent 7aabc1f5d8
commit a80be25c92
2 changed files with 0 additions and 57 deletions

View File

@@ -19,22 +19,12 @@
class cEvent
{
public:
enum eWaitResult
{
wrSignalled,
wrTimeout,
wrError,
} ;
cEvent(void);
~cEvent();
void Wait(void);
void Set (void);
/// Waits for the semaphore with a timeout
eWaitResult Wait(int a_TimeoutMilliSec);
private:
#ifdef _WIN32