* This update restores *nix support
* This stability optimization is disabled on Apple Computers until the .dylib library is updated.ThreadPoolClientBranch
parent
fc9b3ec5a8
commit
cb05b76b83
|
@ -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>
|
||||
|
|
BIN
bin/libode.so
BIN
bin/libode.so
Binary file not shown.
Loading…
Reference in New Issue