From 2d7c72f1b705560822b15f11208f1e5d6a735d86 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Mon, 19 Aug 2013 22:35:27 +0200 Subject: DeadlockDetect now uses sleep instead of timed-wait semaphores. The semaphores' timed-wait still has issues on Linux, it's just easier to use cSleep instead. --- source/DeadlockDetect.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'source/DeadlockDetect.h') diff --git a/source/DeadlockDetect.h b/source/DeadlockDetect.h index bbd76826a..2559c3fff 100644 --- a/source/DeadlockDetect.h +++ b/source/DeadlockDetect.h @@ -31,9 +31,6 @@ public: /// Starts the detection. Hides cIsThread's Start, because we need some initialization bool Start(void); - /// Stops the detection. Hides cIsThread's Stop, because we need to signal m_EvtTerminate - void Stop(void); - protected: struct sWorldAge { @@ -49,8 +46,6 @@ protected: WorldAges m_WorldAges; - cEvent m_EvtTerminate; - // cIsThread overrides: virtual void Execute(void) override; -- cgit v1.2.3