summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1020_Basic_Regression/Echo_Caller.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tests/Bug_1020_Basic_Regression/Echo_Caller.cpp
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tests/Bug_1020_Basic_Regression/Echo_Caller.cpp')
-rw-r--r--TAO/tests/Bug_1020_Basic_Regression/Echo_Caller.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/TAO/tests/Bug_1020_Basic_Regression/Echo_Caller.cpp b/TAO/tests/Bug_1020_Basic_Regression/Echo_Caller.cpp
deleted file mode 100644
index b1922f2d3e3..00000000000
--- a/TAO/tests/Bug_1020_Basic_Regression/Echo_Caller.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-#include "Echo_Caller.h"
-#include "Server_Task.h"
-
-ACE_RCSID (Bug_1020_Basic_Regression,
- Echo_Caller,
- "$Id$")
-
-Echo_Caller::Echo_Caller(CORBA::ORB_ptr orb)
- : orb_ (CORBA::ORB::_duplicate(orb))
-{
-}
-
-void
-Echo_Caller::start_task(Test::Echo_ptr client
- ACE_ENV_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC((CORBA::SystemException))
-{
- Server_Task task (client,
- 32768);
-
- if (task.activate (THR_NEW_LWP | THR_JOINABLE,
- 4,
- 1) == -1)
- {
- ACE_ERROR ((LM_ERROR,
- "Error activating client task\n"));
- }
-
- ACE_Thread_Manager::instance ()->wait ();
-
- return;
-}
-
-void
-Echo_Caller::shutdown(ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC((CORBA::SystemException))
-{
- ACE_DEBUG ((LM_DEBUG, "Server received shutdown message\n"));
- orb_->shutdown(0 ACE_ENV_ARG_PARAMETER);
-}