diff options
author | Justin Clarke Casey | 2008-02-09 00:14:34 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-02-09 00:14:34 +0000 |
commit | 2dc94870aa3c76628ecf7c12b5a1002142a7d8ed (patch) | |
tree | d4bbeb6faae4f16988eb88efaf65eac1a9512d59 /OpenSim/Framework/BlockingQueue.cs | |
parent | * Fixed a situation in ODE where it didn't call the mesher on a cube when you... (diff) | |
download | opensim-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.cs | 7 |
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 | } |