summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1361_Regression/Server_Thread_Pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1361_Regression/Server_Thread_Pool.h')
-rw-r--r--TAO/tests/Bug_1361_Regression/Server_Thread_Pool.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1361_Regression/Server_Thread_Pool.h b/TAO/tests/Bug_1361_Regression/Server_Thread_Pool.h
new file mode 100644
index 00000000000..88b9588038b
--- /dev/null
+++ b/TAO/tests/Bug_1361_Regression/Server_Thread_Pool.h
@@ -0,0 +1,33 @@
+// $Id$
+
+#include "ace/Task_T.h"
+#include "ace/Service_Config.h"
+
+#include "TestC.h"
+
+class Thread_Pool : public ACE_Task<ACE_SYNCH>
+{
+ // = TITLE
+ // Defines a thread pool abstraction based on the <ACE_Task>.
+public:
+ Thread_Pool (ACE_Thread_Manager *thr_mgr,
+ int n_threads);
+ // Constructor activates <n_threads> in the thread pool.
+
+ virtual ~Thread_Pool (void);
+ // Destructor...
+ int shutdown (void);
+
+ virtual int svc (void);
+
+ virtual int put (Test::Echo_ptr echoptr);
+
+ virtual int put (ACE_Message_Block *mb,
+ ACE_Time_Value *tv = 0);
+ // This allows the producer to pass messages to the <Thread_Pool>.
+
+private:
+ virtual int close (u_long);
+ int nt_; // number of threads
+ // Close hook.
+};