diff options
author | Melanie | 2011-10-26 17:48:51 +0100 |
---|---|---|
committer | Melanie | 2011-10-26 17:48:51 +0100 |
commit | 6a96c9546d4fd89f6e9319246cc2270836cf19f7 (patch) | |
tree | e6492419b9a03cb78435e911b345b4a31f749162 /OpenSim/Framework | |
parent | Merge branch 'master' into bigmerge (diff) | |
parent | Merge branch 'master' of /home/opensim/var/repo/opensim (diff) | |
download | opensim-SC_OLD-6a96c9546d4fd89f6e9319246cc2270836cf19f7.zip opensim-SC_OLD-6a96c9546d4fd89f6e9319246cc2270836cf19f7.tar.gz opensim-SC_OLD-6a96c9546d4fd89f6e9319246cc2270836cf19f7.tar.bz2 opensim-SC_OLD-6a96c9546d4fd89f6e9319246cc2270836cf19f7.tar.xz |
Merge branch 'master' into bigmerge
Conflicts:
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Watchdog.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/OpenSim/Framework/Watchdog.cs b/OpenSim/Framework/Watchdog.cs index 952f039..e26a6f2 100644 --- a/OpenSim/Framework/Watchdog.cs +++ b/OpenSim/Framework/Watchdog.cs | |||
@@ -164,11 +164,7 @@ namespace OpenSim.Framework | |||
164 | return m_threads.Remove(threadID); | 164 | return m_threads.Remove(threadID); |
165 | } | 165 | } |
166 | 166 | ||
167 | <<<<<<< HEAD:OpenSim/Framework/Watchdog.cs | ||
168 | public static bool RemoveThread(int threadID) | ||
169 | ======= | ||
170 | public static bool AbortThread(int threadID) | 167 | public static bool AbortThread(int threadID) |
171 | >>>>>>> master:OpenSim/Framework/Watchdog.cs | ||
172 | { | 168 | { |
173 | lock (m_threads) | 169 | lock (m_threads) |
174 | { | 170 | { |
@@ -198,14 +194,10 @@ namespace OpenSim.Framework | |||
198 | try | 194 | try |
199 | { | 195 | { |
200 | if (m_threads.TryGetValue(threadID, out threadInfo)) | 196 | if (m_threads.TryGetValue(threadID, out threadInfo)) |
201 | <<<<<<< HEAD:OpenSim/Framework/Watchdog.cs | ||
202 | threadInfo.LastTick = Environment.TickCount; | ||
203 | ======= | ||
204 | { | 197 | { |
205 | threadInfo.LastTick = Environment.TickCount & Int32.MaxValue; | 198 | threadInfo.LastTick = Environment.TickCount & Int32.MaxValue; |
206 | threadInfo.IsTimedOut = false; | 199 | threadInfo.IsTimedOut = false; |
207 | } | 200 | } |
208 | >>>>>>> master:OpenSim/Framework/Watchdog.cs | ||
209 | else | 201 | else |
210 | { | 202 | { |
211 | m_log.WarnFormat("[WATCHDOG]: Asked to update thread {0} which is not being monitored", threadID); | 203 | m_log.WarnFormat("[WATCHDOG]: Asked to update thread {0} which is not being monitored", threadID); |