summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2683_Regression/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2683_Regression/test_i.cpp')
-rw-r--r--TAO/tests/Bug_2683_Regression/test_i.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/TAO/tests/Bug_2683_Regression/test_i.cpp b/TAO/tests/Bug_2683_Regression/test_i.cpp
new file mode 100644
index 00000000000..4b4cdfae441
--- /dev/null
+++ b/TAO/tests/Bug_2683_Regression/test_i.cpp
@@ -0,0 +1,39 @@
+//
+// $Id$
+//
+#include "test_i.h"
+#include "ace/OS_NS_unistd.h"
+
+test_i::test_i (ORB_Killer *k)
+ : killer_ (k)
+{
+}
+
+void
+test_i::ping (void)
+{
+
+}
+
+void
+test_i::shutdown (void)
+{
+ ACE_DEBUG ((LM_DEBUG,"(%P|%t) requesting shutdown \n"));
+ this->killer_->activate ();
+}
+
+
+ORB_Killer::ORB_Killer (CORBA::ORB_ptr orb)
+ : orb_ (CORBA::ORB::_duplicate (orb))
+{
+}
+
+int
+ORB_Killer::svc ()
+{
+ ACE_OS::sleep (1);
+ ACE_DEBUG ((LM_DEBUG,"(%P|%t) doing shutdown \n"));
+ orb_->shutdown(1);
+ ACE_DEBUG ((LM_DEBUG,"(%P|%t) shutdown complete\n"));
+ return 0;
+}