* This update restores *nix support

* This stability optimization is disabled on Apple Computers until the .dylib library is updated.
ThreadPoolClientBranch
Teravus Ovares 2008-01-30 07:46:48 +00:00
parent fc9b3ec5a8
commit cb05b76b83
2 changed files with 8 additions and 1 deletions

View File

@ -208,9 +208,16 @@ namespace OpenSim.Region.Physics.OdePlugin
internal void waitForSpaceUnlock(IntPtr space)
{
while (d.SpaceLockQuery(space))
try
{
while (d.SpaceLockQuery(space))
{
}
}
catch (System.Exception)
{
//Using this to catch the 'dll doesn't expose entrypoint SpaceLockQuery since the mac library hasn't been rebuilt yet
}
}
/// <summary>

Binary file not shown.