summaryrefslogtreecommitdiffstats
path: root/src/DeadlockDetect.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-11-30 22:14:47 +0100
committermadmaxoft <github@xoft.cz>2013-11-30 22:14:47 +0100
commitbf30528ec4ed53d4c6aef2da0410a04124bbc492 (patch)
treed369ea10c1173cd9a77f740ee07ea869ad6c7e62 /src/DeadlockDetect.cpp
parentFixed compiler warnings in IsBiomeNoDownfall(). (diff)
downloadcuberite-bf30528ec4ed53d4c6aef2da0410a04124bbc492.tar
cuberite-bf30528ec4ed53d4c6aef2da0410a04124bbc492.tar.gz
cuberite-bf30528ec4ed53d4c6aef2da0410a04124bbc492.tar.bz2
cuberite-bf30528ec4ed53d4c6aef2da0410a04124bbc492.tar.lz
cuberite-bf30528ec4ed53d4c6aef2da0410a04124bbc492.tar.xz
cuberite-bf30528ec4ed53d4c6aef2da0410a04124bbc492.tar.zst
cuberite-bf30528ec4ed53d4c6aef2da0410a04124bbc492.zip
Diffstat (limited to 'src/DeadlockDetect.cpp')
-rw-r--r--src/DeadlockDetect.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/DeadlockDetect.cpp b/src/DeadlockDetect.cpp
index c774c9dce..e699e0c84 100644
--- a/src/DeadlockDetect.cpp
+++ b/src/DeadlockDetect.cpp
@@ -31,8 +31,10 @@ cDeadlockDetect::cDeadlockDetect(void) :
-bool cDeadlockDetect::Start(void)
+bool cDeadlockDetect::Start(int a_IntervalSec)
{
+ m_IntervalSec = a_IntervalSec;
+
// Read the initial world data:
class cFillIn :
public cWorldListCallback
@@ -115,7 +117,7 @@ void cDeadlockDetect::CheckWorldAge(const AString & a_WorldName, Int64 a_Age)
if (itr->second.m_Age == a_Age)
{
itr->second.m_NumCyclesSame += 1;
- if (itr->second.m_NumCyclesSame > NUM_CYCLES_LIMIT)
+ if (itr->second.m_NumCyclesSame > (1000 * m_IntervalSec) / CYCLE_MILLISECONDS)
{
DeadlockDetected();
return;