diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Util.cs | 1 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/XEngine/XEngine.cs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 9bc9417..4fd8a2d 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -1647,6 +1647,7 @@ namespace OpenSim.Framework | |||
1647 | throw new InvalidOperationException("SmartThreadPool is already initialized"); | 1647 | throw new InvalidOperationException("SmartThreadPool is already initialized"); |
1648 | 1648 | ||
1649 | m_ThreadPool = new SmartThreadPool(2000, maxThreads, 2); | 1649 | m_ThreadPool = new SmartThreadPool(2000, maxThreads, 2); |
1650 | m_ThreadPool.Name = "Util"; | ||
1650 | } | 1651 | } |
1651 | 1652 | ||
1652 | public static int FireAndForgetCount() | 1653 | public static int FireAndForgetCount() |
diff --git a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs index f38d17d..79cec04 100644 --- a/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs +++ b/OpenSim/Region/ScriptEngine/XEngine/XEngine.cs | |||
@@ -1487,6 +1487,7 @@ namespace OpenSim.Region.ScriptEngine.XEngine | |||
1487 | startInfo.StartSuspended = true; | 1487 | startInfo.StartSuspended = true; |
1488 | 1488 | ||
1489 | m_ThreadPool = new SmartThreadPool(startInfo); | 1489 | m_ThreadPool = new SmartThreadPool(startInfo); |
1490 | m_ThreadPool.Name = "XEngine"; | ||
1490 | } | 1491 | } |
1491 | 1492 | ||
1492 | // | 1493 | // |