aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
diff options
context:
space:
mode:
authorRobert Adams2013-08-22 09:07:58 -0700
committerJustin Clark-Casey (justincc)2013-09-20 21:03:28 +0100
commit6ade1c6c764fb79decc36cb36bdcd58701181e88 (patch)
treea2b82009856404efcb092ad892f6a72dd48595a8 /OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
parentBulletSim: remove chatty debug message from previous commit. (diff)
downloadopensim-SC_OLD-6ade1c6c764fb79decc36cb36bdcd58701181e88.zip
opensim-SC_OLD-6ade1c6c764fb79decc36cb36bdcd58701181e88.tar.gz
opensim-SC_OLD-6ade1c6c764fb79decc36cb36bdcd58701181e88.tar.bz2
opensim-SC_OLD-6ade1c6c764fb79decc36cb36bdcd58701181e88.tar.xz
BulletSim: add requestor's ID to post taint detail log message.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/BulletSPlugin/BSScene.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs b/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
index da7e300..c37bc31 100644
--- a/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
+++ b/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
@@ -987,10 +987,11 @@ public sealed class BSScene : PhysicsScene, IPhysicsParameters
987 // will replace any previous operation by the same object. 987 // will replace any previous operation by the same object.
988 public void PostTaintObject(String ident, uint ID, TaintCallback callback) 988 public void PostTaintObject(String ident, uint ID, TaintCallback callback)
989 { 989 {
990 string uniqueIdent = ident + "-" + ID.ToString(); 990 string IDAsString = ID.ToString();
991 string uniqueIdent = ident + "-" + IDAsString;
991 lock (_taintLock) 992 lock (_taintLock)
992 { 993 {
993 _postTaintOperations[uniqueIdent] = new TaintCallbackEntry(uniqueIdent, callback); 994 _postTaintOperations[uniqueIdent] = new TaintCallbackEntry(IDAsString, uniqueIdent, callback);
994 } 995 }
995 996
996 return; 997 return;