diff options
author | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-31 16:58:21 +0100 |
---|---|---|
committer | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-31 16:58:21 +0100 |
commit | 512d1b9ebebaf205756dde352c4e714dd632ca2d (patch) | |
tree | 5f5c98454b17b6bd04e27805fc9236c000e415bd /src/OSSupport | |
parent | Merge branch 'master' into threadsafequeue (diff) | |
download | cuberite-512d1b9ebebaf205756dde352c4e714dd632ca2d.tar cuberite-512d1b9ebebaf205756dde352c4e714dd632ca2d.tar.gz cuberite-512d1b9ebebaf205756dde352c4e714dd632ca2d.tar.bz2 cuberite-512d1b9ebebaf205756dde352c4e714dd632ca2d.tar.lz cuberite-512d1b9ebebaf205756dde352c4e714dd632ca2d.tar.xz cuberite-512d1b9ebebaf205756dde352c4e714dd632ca2d.tar.zst cuberite-512d1b9ebebaf205756dde352c4e714dd632ca2d.zip |
Diffstat (limited to 'src/OSSupport')
-rw-r--r-- | src/OSSupport/Event.h | 6 | ||||
-rw-r--r-- | src/OSSupport/IsThread.h | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/OSSupport/Event.h b/src/OSSupport/Event.h index 31f32f8c6..71f418c0c 100644 --- a/src/OSSupport/Event.h +++ b/src/OSSupport/Event.h @@ -20,10 +20,10 @@ class cEvent { public: cEvent(void); - virtual ~cEvent(); + ~cEvent(); - virtual void Wait(void); - virtual void Set (void); + void Wait(void); + void Set (void); private: diff --git a/src/OSSupport/IsThread.h b/src/OSSupport/IsThread.h index af4367636..b8784ea33 100644 --- a/src/OSSupport/IsThread.h +++ b/src/OSSupport/IsThread.h @@ -22,6 +22,7 @@ In the descending class' constructor call the Start() method to start the thread + class cIsThread { protected: |