aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorMelanie2012-06-07 23:33:40 +0100
committerMelanie2012-06-07 23:33:40 +0100
commite8cd9fbbb748aed1caac4a5d20d7e723351349dd (patch)
treeb901dfb2ebf4237a77aeebf1fbb929456a615693 /OpenSim/Region/Application
parentRemove a null ref when an avatar's attachment gets the avatar velocity (diff)
parentRecord the fact that child agents can have asset transactions. (diff)
downloadopensim-SC_OLD-e8cd9fbbb748aed1caac4a5d20d7e723351349dd.zip
opensim-SC_OLD-e8cd9fbbb748aed1caac4a5d20d7e723351349dd.tar.gz
opensim-SC_OLD-e8cd9fbbb748aed1caac4a5d20d7e723351349dd.tar.bz2
opensim-SC_OLD-e8cd9fbbb748aed1caac4a5d20d7e723351349dd.tar.xz
Merge branch 'master' into careminster
Conflicts: OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index 28f9481..ac0e3e1 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -438,12 +438,16 @@ namespace OpenSim
438 } 438 }
439 } 439 }
440 440
441 private void WatchdogTimeoutHandler(System.Threading.Thread thread, int lastTick) 441 private void WatchdogTimeoutHandler(Watchdog.ThreadWatchdogInfo twi)
442 { 442 {
443 int now = Environment.TickCount & Int32.MaxValue; 443 int now = Environment.TickCount & Int32.MaxValue;
444 444
445 m_log.ErrorFormat("[WATCHDOG]: Timeout detected for thread \"{0}\". ThreadState={1}. Last tick was {2}ms ago", 445 m_log.ErrorFormat(
446 thread.Name, thread.ThreadState, now - lastTick); 446 "[WATCHDOG]: Timeout detected for thread \"{0}\". ThreadState={1}. Last tick was {2}ms ago. {3}",
447 twi.Thread.Name,
448 twi.Thread.ThreadState,
449 now - twi.LastTick,
450 twi.AlarmMethod != null ? string.Format("Data: {0}", twi.AlarmMethod()) : "");
447 } 451 }
448 452
449 #region Console Commands 453 #region Console Commands