aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Util.cs
diff options
context:
space:
mode:
authorMelanie2009-10-22 04:02:26 +0100
committerMelanie2009-10-22 04:02:26 +0100
commit8ce4fd7234bd460652f6159a3b7a21d2bebee05d (patch)
tree790e26802bcf41a286a98b734b57ae7b5dc9ed8f /OpenSim/Framework/Util.cs
parentAdd MaxPoolThreads in startup to limit the size of the thread pool used (diff)
downloadopensim-SC_OLD-8ce4fd7234bd460652f6159a3b7a21d2bebee05d.zip
opensim-SC_OLD-8ce4fd7234bd460652f6159a3b7a21d2bebee05d.tar.gz
opensim-SC_OLD-8ce4fd7234bd460652f6159a3b7a21d2bebee05d.tar.bz2
opensim-SC_OLD-8ce4fd7234bd460652f6159a3b7a21d2bebee05d.tar.xz
Reduce the default pool threads to 15 (from 30) and the minimum from 5 to 2
Diffstat (limited to '')
-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 9dfb75e..7dde6dd 100644
--- a/OpenSim/Framework/Util.cs
+++ b/OpenSim/Framework/Util.cs
@@ -1302,7 +1302,7 @@ namespace OpenSim.Framework
1302 STPStartInfo startInfo = new STPStartInfo(); 1302 STPStartInfo startInfo = new STPStartInfo();
1303 startInfo.IdleTimeout = 2000; // 2 seconds 1303 startInfo.IdleTimeout = 2000; // 2 seconds
1304 startInfo.MaxWorkerThreads = maxThreads; 1304 startInfo.MaxWorkerThreads = maxThreads;
1305 startInfo.MinWorkerThreads = 5; 1305 startInfo.MinWorkerThreads = 2;
1306 startInfo.StackSize = 524288; 1306 startInfo.StackSize = 524288;
1307 startInfo.ThreadPriority = ThreadPriority.Normal; 1307 startInfo.ThreadPriority = ThreadPriority.Normal;
1308 1308