diff options
author | Jeff Ames | 2008-06-04 09:59:27 +0000 |
---|---|---|
committer | Jeff Ames | 2008-06-04 09:59:27 +0000 |
commit | 4ec4e16c809cf86a63b736d2b7b6ad7291595a5f (patch) | |
tree | cfa896ef9057228171e2ee39c4807060101ba90b /OpenSim/Region/Application | |
parent | * If a ThreadAbortException reaches AuthUser() then let it pass through unmol... (diff) | |
download | opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.zip opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.gz opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.bz2 opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.xz |
Formatting cleanup, minor refactoring, svn properties.
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBackground.cs | 16 |
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; | |||
31 | using Nini.Config; | 31 | using Nini.Config; |
32 | 32 | ||
33 | namespace OpenSim | 33 | namespace 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 | } |