summaryrefslogtreecommitdiff
path: root/apps/JAWS3/jaws3/THYBRID_Concurrency.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS3/jaws3/THYBRID_Concurrency.h')
-rw-r--r--apps/JAWS3/jaws3/THYBRID_Concurrency.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/apps/JAWS3/jaws3/THYBRID_Concurrency.h b/apps/JAWS3/jaws3/THYBRID_Concurrency.h
deleted file mode 100644
index c75fbb1cb1f..00000000000
--- a/apps/JAWS3/jaws3/THYBRID_Concurrency.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/* -*- c++ -*- */
-// $Id$
-
-#ifndef JAWS_THYBRID_CONCURRENCY_H
-#define JAWS_THYBRID_CONCURRENCY_H
-
-#include "ace/Atomic_Op.h"
-
-#include "jaws3/Concurrency.h"
-
-class JAWS_Export JAWS_THYBRID_Concurrency : public JAWS_Concurrency_Impl
-{
-public:
-
- JAWS_THYBRID_Concurrency (void);
-
- int putq (JAWS_Protocol_Handler *ph);
-
- int getq (JAWS_Protocol_Handler *&ph);
-
- static JAWS_THYBRID_Concurrency * instance (void)
- {
- return ACE_Singleton<JAWS_THYBRID_Concurrency, ACE_SYNCH_MUTEX>
- ::instance ();
- }
-
-private:
-
- ACE_Atomic_Op<ACE_SYNCH_MUTEX, int> getting_;
- int min_number_of_threads_;
- int max_number_of_threads_;
- int shutdown_task_;
- int error_;
-
-};
-
-#endif /* JAWS_THYBRID_CONCURRENCY_H */