diff options
author | Teravus Ovares | 2008-05-21 21:47:03 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-21 21:47:03 +0000 |
commit | 8afd93c9439c5cf5043cba4be05bcc9a1cd1e6dc (patch) | |
tree | 4b4fb68ed81871c208478e94b83efbbd8a769809 /OpenSim/Region/Environment/Scenes/Scene.cs | |
parent | * This update causes the backup process to run in a separate thread. (diff) | |
download | opensim-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/Scene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 2 |
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 | ||