diff options
author | sb <sb@openoffice.org> | 2010-01-14 17:45:24 +0100 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-01-14 17:45:24 +0100 |
commit | 1b25da733557cb7029d2656d4ba250b518f5d61f (patch) | |
tree | 36d5ff03dc54ea328a5d221e785536b2a54f4cf7 /salhelper | |
parent | 7a561fc939a4138b557ffab64ae438eac74216cd (diff) |
sb118: #i108324# deprecated osl/semaphor.h etc., as it is unsupported on Mac OS X and unused, anyway
Diffstat (limited to 'salhelper')
-rw-r--r-- | salhelper/inc/salhelper/queue.hxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/salhelper/inc/salhelper/queue.hxx b/salhelper/inc/salhelper/queue.hxx index af8ce8907..49440d343 100644 --- a/salhelper/inc/salhelper/queue.hxx +++ b/salhelper/inc/salhelper/queue.hxx @@ -96,6 +96,12 @@ public: //---------------------------------------------------------------------------- +/** Queue. + + @deprecated + Must not be used, as it internally uses unnamed semaphores, which are not + supported on Mac OS X. +*/ template<class element_type> class Queue : protected QueueBase<element_type> { @@ -133,6 +139,12 @@ public: //---------------------------------------------------------------------------- +/** Bounded queue. + + @deprecated + Must not be used, as it internally uses unnamed semaphores, which are not + supported on Mac OS X. +*/ template<class element_type> class BoundedQueue : protected Queue<element_type> { |