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

cpu-performance
Diva Canto 2013-07-17 12:02:00 -07:00
parent 2b8de2c404
commit 0f5b616fb0
1 changed files with 1 additions and 1 deletions

View File

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