aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorUbitUmarov2017-05-09 18:27:06 +0100
committerUbitUmarov2017-05-09 18:27:06 +0100
commit731510c30592b954e1150603b2f91f1c258d6978 (patch)
tree2db15b4e4ae334fb635b81329981818525c42ca2 /OpenSim/Region/Application
parentupdate mysql connector to v6.9.9 .net4.0 (diff)
downloadopensim-SC_OLD-731510c30592b954e1150603b2f91f1c258d6978.zip
opensim-SC_OLD-731510c30592b954e1150603b2f91f1c258d6978.tar.gz
opensim-SC_OLD-731510c30592b954e1150603b2f91f1c258d6978.tar.bz2
opensim-SC_OLD-731510c30592b954e1150603b2f91f1c258d6978.tar.xz
let .net decide GC mode from its defaults on the platform
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index 7ac6eb9..f9f103a 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -33,6 +33,7 @@ using System.Diagnostics;
33using System.IO; 33using System.IO;
34using System.Linq; 34using System.Linq;
35using System.Reflection; 35using System.Reflection;
36using System.Runtime;
36using System.Text; 37using System.Text;
37using System.Text.RegularExpressions; 38using System.Text.RegularExpressions;
38using System.Timers; 39using System.Timers;
@@ -124,6 +125,8 @@ namespace OpenSim
124 Util.InitThreadPool(stpMinThreads, stpMaxThreads); 125 Util.InitThreadPool(stpMinThreads, stpMaxThreads);
125 126
126 m_log.Info("[OPENSIM MAIN]: Using async_call_method " + Util.FireAndForgetMethod); 127 m_log.Info("[OPENSIM MAIN]: Using async_call_method " + Util.FireAndForgetMethod);
128
129 m_log.InfoFormat("[OPENSIM MAIN] Running GC in {0} mode", GCSettings.IsServerGC ? "server":"workstation");
127 } 130 }
128 131
129#if (_MONO) 132#if (_MONO)