aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorTeravus Ovares2008-05-21 21:47:03 +0000
committerTeravus Ovares2008-05-21 21:47:03 +0000
commit8afd93c9439c5cf5043cba4be05bcc9a1cd1e6dc (patch)
tree4b4fb68ed81871c208478e94b83efbbd8a769809 /OpenSim/Region/Environment/Scenes
parent* This update causes the backup process to run in a separate thread. (diff)
downloadopensim-SC_OLD-8afd93c9439c5cf5043cba4be05bcc9a1cd1e6dc.zip
opensim-SC_OLD-8afd93c9439c5cf5043cba4be05bcc9a1cd1e6dc.tar.gz
opensim-SC_OLD-8afd93c9439c5cf5043cba4be05bcc9a1cd1e6dc.tar.bz2
opensim-SC_OLD-8afd93c9439c5cf5043cba4be05bcc9a1cd1e6dc.tar.xz
* Sets backup bool volatile for extra protection against two backup processes running.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 280e09a..250c884 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -84,7 +84,7 @@ namespace OpenSim.Region.Environment.Scenes
84 private int m_RestartTimerCounter; 84 private int m_RestartTimerCounter;
85 private readonly Timer m_restartTimer = new Timer(15000); // Wait before firing 85 private readonly Timer m_restartTimer = new Timer(15000); // Wait before firing
86 private int m_incrementsof15seconds = 0; 86 private int m_incrementsof15seconds = 0;
87 private bool m_backingup = false; 87 private volatile bool m_backingup = false;
88 88
89 public string m_simulatorVersion = "OpenSimulator 0.5"; 89 public string m_simulatorVersion = "OpenSimulator 0.5";
90 90