summaryrefslogtreecommitdiff
path: root/salhelper
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-01-14 17:45:24 +0100
committersb <sb@openoffice.org>2010-01-14 17:45:24 +0100
commit6fe17909149c4c43c0ca485477dbd7c4334b727e (patch)
tree1d01278ed8f3ff5e04bf7897526bf51d93b1667a /salhelper
parent58c8708eec09080015a1d35cf9ca66c89d9e3599 (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.hxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/salhelper/inc/salhelper/queue.hxx b/salhelper/inc/salhelper/queue.hxx
index eb0f080b2cd1..273c4b9e7e0e 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>
{