aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorRobert Adams2013-05-13 13:05:27 -0700
committerRobert Adams2013-05-13 13:30:44 -0700
commitc86e828dbfed8b9cf72c7e7e8d1dad0c0e9f8940 (patch)
tree58c200f5b70c22faaf4904164780a24b3e1708c4 /OpenSim
parentBulletSim: add adjustment for avatar capsule height scaling. Makes (diff)
downloadopensim-SC_OLD-c86e828dbfed8b9cf72c7e7e8d1dad0c0e9f8940.zip
opensim-SC_OLD-c86e828dbfed8b9cf72c7e7e8d1dad0c0e9f8940.tar.gz
opensim-SC_OLD-c86e828dbfed8b9cf72c7e7e8d1dad0c0e9f8940.tar.bz2
opensim-SC_OLD-c86e828dbfed8b9cf72c7e7e8d1dad0c0e9f8940.tar.xz
BulletSim: add a lock to try and catch a native shape creation/destruction
race condition.
Diffstat (limited to 'OpenSim')
-rwxr-xr-xOpenSim/Region/Physics/BulletSPlugin/BSShapes.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs b/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs
index 262d734..72d039b 100755
--- a/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs
+++ b/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs
@@ -283,8 +283,13 @@ public class BSShapeNative : BSShape
283 public override BSShape GetReference(BSScene pPhysicsScene, BSPhysObject pPrim) 283 public override BSShape GetReference(BSScene pPhysicsScene, BSPhysObject pPrim)
284 { 284 {
285 // Native shapes are not shared so we return a new shape. 285 // Native shapes are not shared so we return a new shape.
286 return new BSShapeNative(CreatePhysicalNativeShape(pPhysicsScene, pPrim, 286 BSShape ret = null;
287 physShapeInfo.shapeType, (FixedShapeKey)physShapeInfo.shapeKey) ); 287 lock (physShapeInfo)
288 {
289 ret = new BSShapeNative(CreatePhysicalNativeShape(pPhysicsScene, pPrim,
290 physShapeInfo.shapeType, (FixedShapeKey)physShapeInfo.shapeKey));
291 }
292 return ret;
288 } 293 }
289 294
290 // Make this reference to the physical shape go away since native shapes are not shared. 295 // Make this reference to the physical shape go away since native shapes are not shared.