diff options
author | Diva Canto | 2013-07-17 15:05:36 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-17 15:05:36 -0700 |
commit | fa2370b32ee57a07f27501152c3c705a883b13d8 (patch) | |
tree | 229303841ec7a044c3724e64a352d1d26505eb5c /OpenSim/Framework/BlockingQueue.cs | |
parent | Revert "Didn't mean to commit this change in BlockingQueue.cs" (diff) | |
download | opensim-SC-fa2370b32ee57a07f27501152c3c705a883b13d8.zip opensim-SC-fa2370b32ee57a07f27501152c3c705a883b13d8.tar.gz opensim-SC-fa2370b32ee57a07f27501152c3c705a883b13d8.tar.bz2 opensim-SC-fa2370b32ee57a07f27501152c3c705a883b13d8.tar.xz |
Revert "Cleared up much confusion in PollServiceRequestManager. Here's the history:"
This reverts commit e46459ef21e1ee5ceaeca70365a7c881d33b09ce.
Diffstat (limited to 'OpenSim/Framework/BlockingQueue.cs')
-rw-r--r-- | OpenSim/Framework/BlockingQueue.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/BlockingQueue.cs b/OpenSim/Framework/BlockingQueue.cs index e607e64..aef1192 100644 --- a/OpenSim/Framework/BlockingQueue.cs +++ b/OpenSim/Framework/BlockingQueue.cs | |||
@@ -76,7 +76,7 @@ namespace OpenSim.Framework | |||
76 | { | 76 | { |
77 | lock (m_queueSync) | 77 | lock (m_queueSync) |
78 | { | 78 | { |
79 | while (m_queue.Count < 1 && m_pqueue.Count < 1) | 79 | if (m_queue.Count < 1 && m_pqueue.Count < 1) |
80 | { | 80 | { |
81 | Monitor.Wait(m_queueSync, msTimeout); | 81 | Monitor.Wait(m_queueSync, msTimeout); |
82 | } | 82 | } |