aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Util.cs
diff options
context:
space:
mode:
authorDan Lake2013-07-18 02:28:36 -0700
committerDan Lake2013-07-18 02:28:36 -0700
commitae997fffee31da6807e997351a16ba620b360331 (patch)
tree2ea481b4111637604a9d79e7a588cfeaa5c7dc39 /OpenSim/Framework/Util.cs
parentAdded MinPoolThreads to ini [Startup] section to control SmartThreadPool. (diff)
parentFix what apepars to be a bug in DoubleQueue<T>.Enqueue(Queue<T> q, T data) wh... (diff)
downloadopensim-SC_OLD-ae997fffee31da6807e997351a16ba620b360331.zip
opensim-SC_OLD-ae997fffee31da6807e997351a16ba620b360331.tar.gz
opensim-SC_OLD-ae997fffee31da6807e997351a16ba620b360331.tar.bz2
opensim-SC_OLD-ae997fffee31da6807e997351a16ba620b360331.tar.xz
Merge branch 'master' of git://opensimulator.org/git/opensim
Diffstat (limited to 'OpenSim/Framework/Util.cs')
-rw-r--r--OpenSim/Framework/Util.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs
index 27100e6..6a15734 100644
--- a/OpenSim/Framework/Util.cs
+++ b/OpenSim/Framework/Util.cs
@@ -2255,7 +2255,7 @@ namespace OpenSim.Framework
2255 { 2255 {
2256 lock (m_syncRoot) 2256 lock (m_syncRoot)
2257 { 2257 {
2258 m_lowQueue.Enqueue(data); 2258 q.Enqueue(data);
2259 m_s.WaitOne(0); 2259 m_s.WaitOne(0);
2260 m_s.Release(); 2260 m_s.Release();
2261 } 2261 }