diff options
author | Justin Clarke Casey | 2008-11-04 21:42:31 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-11-04 21:42:31 +0000 |
commit | 41232ee9217e68c3f5e47abd3b193956c228dc7b (patch) | |
tree | c258c06767b95bb4adc6d3d9e14cc455636f559e /OpenSim/Framework/ThreadTracker.cs | |
parent | * Stop an exception in the thread tracker cleanup loop from terminating the sim (diff) | |
download | opensim-SC_OLD-41232ee9217e68c3f5e47abd3b193956c228dc7b.zip opensim-SC_OLD-41232ee9217e68c3f5e47abd3b193956c228dc7b.tar.gz opensim-SC_OLD-41232ee9217e68c3f5e47abd3b193956c228dc7b.tar.bz2 opensim-SC_OLD-41232ee9217e68c3f5e47abd3b193956c228dc7b.tar.xz |
* Correct build break from last commit - how on earth did it compile last time? Bizarre
Diffstat (limited to 'OpenSim/Framework/ThreadTracker.cs')
-rw-r--r-- | OpenSim/Framework/ThreadTracker.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/ThreadTracker.cs b/OpenSim/Framework/ThreadTracker.cs index 0a63239..b9ba9b6 100644 --- a/OpenSim/Framework/ThreadTracker.cs +++ b/OpenSim/Framework/ThreadTracker.cs | |||
@@ -28,12 +28,17 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Reflection; | ||
31 | using System.Threading; | 32 | using System.Threading; |
33 | using log4net; | ||
32 | 34 | ||
33 | namespace OpenSim.Framework | 35 | namespace OpenSim.Framework |
34 | { | 36 | { |
35 | public static class ThreadTracker | 37 | public static class ThreadTracker |
36 | { | 38 | { |
39 | private static readonly ILog m_log | ||
40 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
41 | |||
37 | private static readonly long ThreadTimeout = 30 * 10000000; | 42 | private static readonly long ThreadTimeout = 30 * 10000000; |
38 | public static List<ThreadTrackerItem> m_Threads; | 43 | public static List<ThreadTrackerItem> m_Threads; |
39 | public static Thread ThreadTrackerThread; | 44 | public static Thread ThreadTrackerThread; |