aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Chemeris <Alexander.Chemeris@gmail.com>2013-07-13 22:29:12 +0400
committerAlexander Chemeris <Alexander.Chemeris@gmail.com>2013-07-14 23:11:54 +0400
commitb8646946526903d2bbfa657690936b9bcba80ca5 (patch)
tree5faaf203f38a4fc83b71041d61e1287b38398ce8
parent8eaa40dd6c2a783306d809aec98c2937e15068f3 (diff)
CommonLibs: DEBUG: Mark interthread classes which are not used in OsmoTRX.
-rw-r--r--CommonLibs/Interthread.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/CommonLibs/Interthread.h b/CommonLibs/Interthread.h
index 42e6f7f..cdc2e74 100644
--- a/CommonLibs/Interthread.h
+++ b/CommonLibs/Interthread.h
@@ -41,6 +41,7 @@
//@{
+// UNUSED in osmo-trx
/** Pointer FIFO for interthread operations. */
// (pat) The elements in the queue are type T*, and
// the Fifo class implements the underlying queue.
@@ -155,6 +156,7 @@ template <class T, class Fifo=PointerFIFO> class InterthreadQueue {
}
};
+// UNUSED in osmo-trx
// (pat) Identical to above but with the threading problem fixed.
template <class T, class Fifo=PointerFIFO> class InterthreadQueue2 {
@@ -276,6 +278,7 @@ template <class T, class Fifo=PointerFIFO> class InterthreadQueue2 {
+// UNUSED in osmo-trx
/** Pointer FIFO for interthread operations. */
template <class T> class InterthreadQueueWithWait {
@@ -380,7 +383,7 @@ template <class T> class InterthreadQueueWithWait {
-
+// UNUSED in osmo-trx
/** Thread-safe map of pointers to class D, keyed by class K. */
template <class K, class D > class InterthreadMap {
@@ -644,7 +647,7 @@ template <class T, class C = std::vector<T*>, class Cmp = PointerCompare<T> > cl
-
+// UNUSED in osmo-trx
class Semaphore {
private: