* 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

@ -207,12 +207,19 @@ namespace OpenSim.Region.Physics.OdePlugin
} }
internal void waitForSpaceUnlock(IntPtr space) internal void waitForSpaceUnlock(IntPtr space)
{
try
{ {
while (d.SpaceLockQuery(space)) 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> /// <summary>
/// Debug space message for printing the space that a prim/avatar is in. /// Debug space message for printing the space that a prim/avatar is in.
/// </summary> /// </summary>

Binary file not shown.