diff options
author | John Hurliman | 2010-09-10 12:04:12 -0700 |
---|---|---|
committer | John Hurliman | 2010-09-10 12:04:12 -0700 |
commit | dd277a0d02f1aa79f4fcb5d108cbc696e90500c2 (patch) | |
tree | 7e396d347e43504ec23c59c3749f995f15c2e254 /OpenSim/Region/CoreModules/Avatar | |
parent | * Run SimianGrid session updates asynchronously instead of from the main hear... (diff) | |
download | opensim-SC-dd277a0d02f1aa79f4fcb5d108cbc696e90500c2.zip opensim-SC-dd277a0d02f1aa79f4fcb5d108cbc696e90500c2.tar.gz opensim-SC-dd277a0d02f1aa79f4fcb5d108cbc696e90500c2.tar.bz2 opensim-SC-dd277a0d02f1aa79f4fcb5d108cbc696e90500c2.tar.xz |
First pass at cleaning up thread safety in EntityManager and SceneGraph
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs index dd7d831..7270304 100644 --- a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | |||
@@ -436,7 +436,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments | |||
436 | 436 | ||
437 | // We can NOT use the dictionries here, as we are looking | 437 | // We can NOT use the dictionries here, as we are looking |
438 | // for an entity by the fromAssetID, which is NOT the prim UUID | 438 | // for an entity by the fromAssetID, which is NOT the prim UUID |
439 | List<EntityBase> detachEntities = m_scene.GetEntities(); | 439 | EntityBase[] detachEntities = m_scene.GetEntities(); |
440 | SceneObjectGroup group; | 440 | SceneObjectGroup group; |
441 | 441 | ||
442 | foreach (EntityBase entity in detachEntities) | 442 | foreach (EntityBase entity in detachEntities) |