aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/BlockingQueue.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-02-09 00:14:34 +0000
committerJustin Clarke Casey2008-02-09 00:14:34 +0000
commit2dc94870aa3c76628ecf7c12b5a1002142a7d8ed (patch)
treed4bbeb6faae4f16988eb88efaf65eac1a9512d59 /OpenSim/Framework/BlockingQueue.cs
parent* Fixed a situation in ODE where it didn't call the mesher on a cube when you... (diff)
downloadopensim-SC_OLD-2dc94870aa3c76628ecf7c12b5a1002142a7d8ed.zip
opensim-SC_OLD-2dc94870aa3c76628ecf7c12b5a1002142a7d8ed.tar.gz
opensim-SC_OLD-2dc94870aa3c76628ecf7c12b5a1002142a7d8ed.tar.bz2
opensim-SC_OLD-2dc94870aa3c76628ecf7c12b5a1002142a7d8ed.tar.xz
Mostly debugging verbosity which I shall very shortly comment out.
Just want to try this out on windows quickly.
Diffstat (limited to 'OpenSim/Framework/BlockingQueue.cs')
-rw-r--r--OpenSim/Framework/BlockingQueue.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Framework/BlockingQueue.cs b/OpenSim/Framework/BlockingQueue.cs
index dd6d866..e72884c 100644
--- a/OpenSim/Framework/BlockingQueue.cs
+++ b/OpenSim/Framework/BlockingQueue.cs
@@ -64,5 +64,10 @@ namespace OpenSim.Framework
64 return m_queue.Contains(item); 64 return m_queue.Contains(item);
65 } 65 }
66 } 66 }
67
68 public int Count()
69 {
70 return m_queue.Count;
71 }
67 } 72 }
68} \ No newline at end of file 73}