diff options
author | UbitUmarov | 2017-05-09 18:27:06 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-09 18:27:06 +0100 |
commit | 731510c30592b954e1150603b2f91f1c258d6978 (patch) | |
tree | 2db15b4e4ae334fb635b81329981818525c42ca2 /OpenSim/Region/Application | |
parent | update mysql connector to v6.9.9 .net4.0 (diff) | |
download | opensim-SC-731510c30592b954e1150603b2f91f1c258d6978.zip opensim-SC-731510c30592b954e1150603b2f91f1c258d6978.tar.gz opensim-SC-731510c30592b954e1150603b2f91f1c258d6978.tar.bz2 opensim-SC-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.cs | 3 |
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; | |||
33 | using System.IO; | 33 | using System.IO; |
34 | using System.Linq; | 34 | using System.Linq; |
35 | using System.Reflection; | 35 | using System.Reflection; |
36 | using System.Runtime; | ||
36 | using System.Text; | 37 | using System.Text; |
37 | using System.Text.RegularExpressions; | 38 | using System.Text.RegularExpressions; |
38 | using System.Timers; | 39 | using 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) |