aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDiva Canto2015-10-14 17:57:13 -0700
committerDiva Canto2015-10-14 17:57:13 -0700
commite14e432b5023ae64d44010c622063944a5158bf2 (patch)
tree1fa6e10546a79a22c51ebb20183dda76408c3d52
parentRestored authentication in AssetServicesConnector. (diff)
downloadopensim-SC_OLD-e14e432b5023ae64d44010c622063944a5158bf2.zip
opensim-SC_OLD-e14e432b5023ae64d44010c622063944a5158bf2.tar.gz
opensim-SC_OLD-e14e432b5023ae64d44010c622063944a5158bf2.tar.bz2
opensim-SC_OLD-e14e432b5023ae64d44010c622063944a5158bf2.tar.xz
More exception catching in ODE at shutdown. Not sure why the exception happens.
-rw-r--r--OpenSim/Region/PhysicsModules/Ode/OdeScene.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Region/PhysicsModules/Ode/OdeScene.cs b/OpenSim/Region/PhysicsModules/Ode/OdeScene.cs
index adc8d98..a85d11a 100644
--- a/OpenSim/Region/PhysicsModules/Ode/OdeScene.cs
+++ b/OpenSim/Region/PhysicsModules/Ode/OdeScene.cs
@@ -40,6 +40,7 @@ using System.Diagnostics;
40using System.IO; 40using System.IO;
41using System.Linq; 41using System.Linq;
42using System.Reflection; 42using System.Reflection;
43using System.Runtime.ExceptionServices;
43using System.Runtime.InteropServices; 44using System.Runtime.InteropServices;
44using System.Threading; 45using System.Threading;
45using log4net; 46using log4net;
@@ -4055,6 +4056,7 @@ namespace OpenSim.Region.PhysicsModule.ODE
4055 } 4056 }
4056 } 4057 }
4057*/ 4058*/
4059 [HandleProcessCorruptedStateExceptions]
4058 public override void Dispose() 4060 public override void Dispose()
4059 { 4061 {
4060 _worldInitialized = false; 4062 _worldInitialized = false;
@@ -4079,7 +4081,14 @@ namespace OpenSim.Region.PhysicsModule.ODE
4079 //{ 4081 //{
4080 //RemoveAvatar(act); 4082 //RemoveAvatar(act);
4081 //} 4083 //}
4082 d.WorldDestroy(world); 4084 try
4085 {
4086 d.WorldDestroy(world);
4087 }
4088 catch (AccessViolationException e)
4089 {
4090 m_log.ErrorFormat("[ODE SCENE]: exception {0}", e.Message);
4091 }
4083 //d.CloseODE(); 4092 //d.CloseODE();
4084 } 4093 }
4085 4094