From 8baa2345419ddaf4a72e91e967a03d8b5dbc33f0 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Tue, 31 Jan 2012 10:45:53 +0000 Subject: cEvent class cleanup (single-event only, since multi-event wasn't used and wouldn't work on *nix anyway) git-svn-id: http://mc-server.googlecode.com/svn/trunk@199 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cEvent.h | 47 ++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 38 insertions(+), 9 deletions(-) (limited to 'source/cEvent.h') diff --git a/source/cEvent.h b/source/cEvent.h index b0b1d73be..11b9d7098 100644 --- a/source/cEvent.h +++ b/source/cEvent.h @@ -1,18 +1,47 @@ + +// cEvent.h + +// Interfaces to the cEvent object representing an OS-specific synchronization primitive that can be waited-for +// Implemented as an Event on Win and as a 1-semaphore on *nix + + + + + #pragma once +#ifndef CEVENT_H_INCLUDED +#define CEVENT_H_INCLUDED + + + + class cEvent { public: - cEvent( unsigned int a_NumEvents = 1 ); + cEvent(void); ~cEvent(); - void Wait(); - void Set(unsigned int a_EventNum = 0); + void Wait(void); + void Set (void); + private: - unsigned int m_NumEvents; - void* m_Handle; // HANDLE[] pointer -#ifndef _WIN32 - bool m_bNamed; -#endif -}; + #ifdef _WIN32 + HANDLE m_Event; + #else + sem_t * m_Event; + bool m_bIsNamed; + #endif +} ; + + + + + + +#endif // CEVENT_H_INCLUDED + + + + -- cgit v1.2.3