Lock the object queue when dequeueing
parent
f8e2d25739
commit
c900134f91
|
@ -66,6 +66,8 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendPrimUpdates()
|
public void SendPrimUpdates()
|
||||||
|
{
|
||||||
|
lock(m_pendingObjects)
|
||||||
{
|
{
|
||||||
if (m_pendingObjects == null)
|
if (m_pendingObjects == null)
|
||||||
{
|
{
|
||||||
|
@ -169,6 +171,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void Reset()
|
public void Reset()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue