aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBackground.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBackground.cs')
-rw-r--r--OpenSim/Region/Application/OpenSimBackground.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/Application/OpenSimBackground.cs b/OpenSim/Region/Application/OpenSimBackground.cs
index 51a5b67..bfecf3b 100644
--- a/OpenSim/Region/Application/OpenSimBackground.cs
+++ b/OpenSim/Region/Application/OpenSimBackground.cs
@@ -31,20 +31,20 @@ using log4net;
31using Nini.Config; 31using Nini.Config;
32 32
33namespace OpenSim 33namespace OpenSim
34{ 34{
35 /// <summary> 35 /// <summary>
36 /// Consoleless OpenSim region server 36 /// Consoleless OpenSim region server
37 /// </summary> 37 /// </summary>
38 public class OpenSimBackground : OpenSimBase 38 public class OpenSimBackground : OpenSimBase
39 { 39 {
40 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 40 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
41 41
42 private ManualResetEvent WorldHasComeToAnEnd = new ManualResetEvent(false); 42 private ManualResetEvent WorldHasComeToAnEnd = new ManualResetEvent(false);
43 43
44 public OpenSimBackground(IConfigSource configSource) : base(configSource) 44 public OpenSimBackground(IConfigSource configSource) : base(configSource)
45 { 45 {
46 } 46 }
47 47
48 /// <summary> 48 /// <summary>
49 /// Performs initialisation of the scene, such as loading configuration from disk. 49 /// Performs initialisation of the scene, such as loading configuration from disk.
50 /// </summary> 50 /// </summary>
@@ -65,8 +65,8 @@ namespace OpenSim
65 m_clientServers.Count.ToString(), m_clientServers.Count > 1 ? "s" : ""); 65 m_clientServers.Count.ToString(), m_clientServers.Count > 1 ? "s" : "");
66 66
67 WorldHasComeToAnEnd.WaitOne(); 67 WorldHasComeToAnEnd.WaitOne();
68 } 68 }
69 69
70 /// <summary> 70 /// <summary>
71 /// Performs any last-minute sanity checking and shuts down the region server 71 /// Performs any last-minute sanity checking and shuts down the region server
72 /// </summary> 72 /// </summary>
@@ -75,6 +75,6 @@ namespace OpenSim
75 WorldHasComeToAnEnd.Set(); 75 WorldHasComeToAnEnd.Set();
76 76
77 base.Shutdown(); 77 base.Shutdown();
78 } 78 }
79 } 79 }
80} 80}