diff options
author | madmaxoft <github@xoft.cz> | 2013-08-19 22:48:13 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-19 22:48:13 +0200 |
commit | 97aff179c1e436ccb369ee2a08f25d9250ef637f (patch) | |
tree | ba4f91544aa2b0f31382dbcdbda40c903f1d3bf5 /source/DeadlockDetect.cpp | |
parent | DeadlockDetect now uses sleep instead of timed-wait semaphores. (diff) | |
download | cuberite-97aff179c1e436ccb369ee2a08f25d9250ef637f.tar cuberite-97aff179c1e436ccb369ee2a08f25d9250ef637f.tar.gz cuberite-97aff179c1e436ccb369ee2a08f25d9250ef637f.tar.bz2 cuberite-97aff179c1e436ccb369ee2a08f25d9250ef637f.tar.lz cuberite-97aff179c1e436ccb369ee2a08f25d9250ef637f.tar.xz cuberite-97aff179c1e436ccb369ee2a08f25d9250ef637f.tar.zst cuberite-97aff179c1e436ccb369ee2a08f25d9250ef637f.zip |
Diffstat (limited to '')
-rw-r--r-- | source/DeadlockDetect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/DeadlockDetect.cpp b/source/DeadlockDetect.cpp index de9a32d39..5af3f973d 100644 --- a/source/DeadlockDetect.cpp +++ b/source/DeadlockDetect.cpp @@ -62,7 +62,7 @@ bool cDeadlockDetect::Start(void) void cDeadlockDetect::Execute(void) { - // Loop until the event is signalled + // Loop until the signal to terminate: while (!m_ShouldTerminate) { // Check the world ages: |