diff options
author | John Hurliman | 2009-10-27 10:07:35 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-27 10:07:35 -0700 |
commit | bcd7593dfbd7ed3a2436b0eb0a1c7e2577d6b7ea (patch) | |
tree | a9c94393cde66433d43c59abd876ba9292ebc5dd /OpenSim/Region/Framework | |
parent | Finally hunted down the Parallel deadlock. Packets were being handled asynchr... (diff) | |
download | opensim-SC_OLD-bcd7593dfbd7ed3a2436b0eb0a1c7e2577d6b7ea.zip opensim-SC_OLD-bcd7593dfbd7ed3a2436b0eb0a1c7e2577d6b7ea.tar.gz opensim-SC_OLD-bcd7593dfbd7ed3a2436b0eb0a1c7e2577d6b7ea.tar.bz2 opensim-SC_OLD-bcd7593dfbd7ed3a2436b0eb0a1c7e2577d6b7ea.tar.xz |
Forgot a line in the previous commit
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 42051d0..3c23c74 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4264,6 +4264,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
4264 | // FIXME: Asynchronous iteration is disabled until we have a threading model that | 4264 | // FIXME: Asynchronous iteration is disabled until we have a threading model that |
4265 | // can support calling this function from an async packet handler without | 4265 | // can support calling this function from an async packet handler without |
4266 | // potentially deadlocking | 4266 | // potentially deadlocking |
4267 | m_clientManager.ForEachSync(action); | ||
4268 | |||
4267 | //if (doAsynchronous) | 4269 | //if (doAsynchronous) |
4268 | // m_clientManager.ForEach(action); | 4270 | // m_clientManager.ForEach(action); |
4269 | //else | 4271 | //else |