aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 95d69a1..4776bed 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -1107,6 +1107,11 @@ namespace OpenSim.Region.Framework.Scenes
1107 } 1107 }
1108 if (loginsdisabled && (m_frame > 20)) 1108 if (loginsdisabled && (m_frame > 20))
1109 { 1109 {
1110 // In 99.9% of cases it is a bad idea to manually force garbage collection. However,
1111 // this is a rare case where we know we have just went through a long cycle of heap
1112 // allocations, and there is no more work to be done until someone logs in
1113 GC.Collect();
1114
1110 m_log.Debug("[REGION]: Enabling Logins"); 1115 m_log.Debug("[REGION]: Enabling Logins");
1111 loginsdisabled = false; 1116 loginsdisabled = false;
1112 } 1117 }