diff options
author | Diva Canto | 2013-07-17 12:02:00 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-17 12:02:00 -0700 |
commit | 0f5b616fb0ebf9207b3cc81771622ed1290ea7d6 (patch) | |
tree | 2113ec68aa50170bb694eeb0d72303fc0209154b | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-0f5b616fb0ebf9207b3cc81771622ed1290ea7d6.zip opensim-SC_OLD-0f5b616fb0ebf9207b3cc81771622ed1290ea7d6.tar.gz opensim-SC_OLD-0f5b616fb0ebf9207b3cc81771622ed1290ea7d6.tar.bz2 opensim-SC_OLD-0f5b616fb0ebf9207b3cc81771622ed1290ea7d6.tar.xz |
Didn't mean to commit this change in 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 | } |