On a teleport, lock m_agentsInTransit whilst we grab the value to check for completion just to be sure we're not using a thread cached version.

user_profiles
Justin Clark-Casey (justincc) 2013-03-21 00:46:08 +00:00
parent 4de530af45
commit 46c833810c
2 changed files with 12 additions and 5 deletions

View File

@ -292,8 +292,15 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
// There should be no race condition here since no other code should be removing the agent transfer or
// changing the state to another other than Transferring => ReceivedAtDestination.
while (m_agentsInTransit[id] != AgentTransferState.ReceivedAtDestination && count-- > 0)
while (count-- > 0)
{
lock (m_agentsInTransit)
{
if (m_agentsInTransit[id] == AgentTransferState.ReceivedAtDestination)
break;
}
// m_log.Debug(" >>> Waiting... " + count);
Thread.Sleep(100);
}

View File

@ -107,7 +107,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests
}
[Test]
public void TestSameSimulatorSeparatedRegions()
public void TestSameSimulatorIsolatedRegions()
{
TestHelpers.InMethod();
// TestHelpers.EnableLogging();
@ -180,7 +180,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests
/// Test teleport procedures when the target simulator returns false when queried about access.
/// </summary>
[Test]
public void TestSameSimulatorSeparatedRegions_DeniedOnQueryAccess()
public void TestSameSimulatorIsolatedRegions_DeniedOnQueryAccess()
{
TestHelpers.InMethod();
// TestHelpers.EnableLogging();
@ -264,7 +264,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests
/// Test teleport procedures when the target simulator create agent step is refused.
/// </summary>
[Test]
public void TestSameSimulatorSeparatedRegions_DeniedOnCreateAgent()
public void TestSameSimulatorIsolatedRegions_DeniedOnCreateAgent()
{
TestHelpers.InMethod();
// TestHelpers.EnableLogging();
@ -345,7 +345,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests
/// (for CreateAgent) but the viewer cannot reach the destination region due to network issues.
/// </remarks>
[Test]
public void TestSameSimulatorSeparatedRegions_DestinationDidNotProcessViewerConnection()
public void TestSameSimulatorIsolatedRegions_DestinationDidNotProcessViewerConnection()
{
TestHelpers.InMethod();
// TestHelpers.EnableLogging();