diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-06-18 18:53:27 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-06-18 18:53:27 +0000 |
commit | 152c0f5c127eac99b5c9097aa4db2b34e14e6dd0 (patch) | |
tree | 0d399a92623e98588cd34e4fe0c2cf7fed880173 /TAO/tests/Two_Objects/First_i.cpp | |
parent | 7e7f4a5d3e77a42e648b7dd2e1b9cf23a3780955 (diff) | |
download | ATCD-MyACE.tar.gz |
This commit was manufactured by cvs2svn to create branch 'MyACE'.MyACE
Diffstat (limited to 'TAO/tests/Two_Objects/First_i.cpp')
-rw-r--r-- | TAO/tests/Two_Objects/First_i.cpp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/TAO/tests/Two_Objects/First_i.cpp b/TAO/tests/Two_Objects/First_i.cpp deleted file mode 100644 index 6e0c6e2c465..00000000000 --- a/TAO/tests/Two_Objects/First_i.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// -// $Id$ -// - -#include "First_i.h" -#include "tao/ORB_Core.h" -#include "tao/debug.h" -#include "tao/Transport_Cache_Manager.h" -#include "ace/Synch.h" - -ACE_RCSID(Test, Test, "$Id$") - -First_i::First_i (CORBA::ORB_ptr orb, ACE_Auto_Event &two_way_done) - : orb_ (CORBA::ORB::_duplicate (orb)), - two_way_done_(two_way_done) -{ -} - -void -First_i::oneway_method (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) - ACE_THROW_SPEC ((CORBA::SystemException)) -{ - ACE_DEBUG ((LM_DEBUG, "Oneway servant : (%P|%t) one way method called. About to wait for two way call completion\n")); - - two_way_done_.wait (); - - ACE_DEBUG ((LM_DEBUG, "Oneway servant : (%P|%t) woke up after wait\n")); -} |