Revert "Didn't mean to commit this change in BlockingQueue.cs"

This reverts commit 0f5b616fb0.
This commit is contained in:
Diva Canto
2013-07-17 15:05:16 -07:00
parent 7127891957
commit fda91d93da

View File

@@ -76,7 +76,7 @@ namespace OpenSim.Framework
{
lock (m_queueSync)
{
if (m_queue.Count < 1 && m_pqueue.Count < 1)
while (m_queue.Count < 1 && m_pqueue.Count < 1)
{
Monitor.Wait(m_queueSync, msTimeout);
}