aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorAdam Frisby2008-08-30 16:46:51 +0000
committerAdam Frisby2008-08-30 16:46:51 +0000
commit72b0a53ada9e8e8bc54a06e0097e87e5d95daaad (patch)
treee15c7214b52f6267653ad41755597b37620dc2e1 /OpenSim/Data
parent* Fix for Mantis #2087, Standalone MySQL broken with threading improvements. ... (diff)
downloadopensim-SC_OLD-72b0a53ada9e8e8bc54a06e0097e87e5d95daaad.zip
opensim-SC_OLD-72b0a53ada9e8e8bc54a06e0097e87e5d95daaad.tar.gz
opensim-SC_OLD-72b0a53ada9e8e8bc54a06e0097e87e5d95daaad.tar.bz2
opensim-SC_OLD-72b0a53ada9e8e8bc54a06e0097e87e5d95daaad.tar.xz
* Fixed #2807 Again, Whoops.
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/MySQLSuperManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLSuperManager.cs b/OpenSim/Data/MySQL/MySQLSuperManager.cs
index 848a0bd..effdac7 100644
--- a/OpenSim/Data/MySQL/MySQLSuperManager.cs
+++ b/OpenSim/Data/MySQL/MySQLSuperManager.cs
@@ -8,7 +8,7 @@ namespace OpenSim.Data.MySQL
8 class MySQLSuperManager 8 class MySQLSuperManager
9 { 9 {
10 public bool Locked; 10 public bool Locked;
11 private Mutex m_lock; 11 private Mutex m_lock = new Mutex(false);
12 public MySQLManager Manager; 12 public MySQLManager Manager;
13 13
14 public void GetLock() 14 public void GetLock()