diff options
author | Diva Canto | 2013-07-17 15:05:16 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-17 15:05:16 -0700 |
commit | fda91d93dad1fa6f901e8db5829aa8b70477c97e (patch) | |
tree | 27432e2650363756de44e9b6e774be428b2f6a33 /OpenSim/Framework | |
parent | Revert "Putting the requests back in the queue while testing for count >0 is ... (diff) | |
download | opensim-SC_OLD-fda91d93dad1fa6f901e8db5829aa8b70477c97e.zip opensim-SC_OLD-fda91d93dad1fa6f901e8db5829aa8b70477c97e.tar.gz opensim-SC_OLD-fda91d93dad1fa6f901e8db5829aa8b70477c97e.tar.bz2 opensim-SC_OLD-fda91d93dad1fa6f901e8db5829aa8b70477c97e.tar.xz |
Revert "Didn't mean to commit this change in BlockingQueue.cs"
This reverts commit 0f5b616fb0ebf9207b3cc81771622ed1290ea7d6.
Diffstat (limited to 'OpenSim/Framework')
-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 aef1192..e607e64 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 | if (m_queue.Count < 1 && m_pqueue.Count < 1) | 79 | while (m_queue.Count < 1 && m_pqueue.Count < 1) |
80 | { | 80 | { |
81 | Monitor.Wait(m_queueSync, msTimeout); | 81 | Monitor.Wait(m_queueSync, msTimeout); |
82 | } | 82 | } |