summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhuangming <huangminghuang@users.noreply.github.com>2003-11-25 16:48:06 +0000
committerhuangming <huangminghuang@users.noreply.github.com>2003-11-25 16:48:06 +0000
commitc0b9701fc0d9e8ef4d890ad6e79014d3b70de75d (patch)
tree55252d8e2d68f6042ca1704599196d7a31366715
parent500ac0bf53e011fa8dd1ed23764c7d17c2bf5dbe (diff)
downloadATCD-c0b9701fc0d9e8ef4d890ad6e79014d3b70de75d.tar.gz
*** empty log message ***
-rw-r--r--TAO/orbsvcs/tests/FtRtEvent/FtRtEvent_Test.cpp4
-rw-r--r--TAO/orbsvcs/tests/FtRtEvent/PushSupplier.cpp1
2 files changed, 5 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/FtRtEvent/FtRtEvent_Test.cpp b/TAO/orbsvcs/tests/FtRtEvent/FtRtEvent_Test.cpp
index 13ef57385d0..820e9d54772 100644
--- a/TAO/orbsvcs/tests/FtRtEvent/FtRtEvent_Test.cpp
+++ b/TAO/orbsvcs/tests/FtRtEvent/FtRtEvent_Test.cpp
@@ -92,15 +92,19 @@ FtRtEvent_Test_Base::get_event_channel(ACE_ENV_SINGLE_ARG_DECL)
name.length(1);
name[0].id = CORBA::string_dup("FT_EventService");
+ ACE_DEBUG((LM_DEBUG, "Getting FT_EventService from Naming Service\n"));
+
CosNaming::NamingContext_var naming_context =
resolve_init<CosNaming::NamingContext>(orb_.in(), "NameService"
ACE_ENV_ARG_PARAMETER);
ACE_CHECK_RETURN(0);
+
channel = resolve<FtRtecEventChannelAdmin::EventChannel>(naming_context.in(),
name
ACE_ENV_ARG_PARAMETER);
ACE_CHECK_RETURN(0);
+ ACE_DEBUG((LM_DEBUG, "Got FT_EventService\n"));
}
if (use_gateway_)
diff --git a/TAO/orbsvcs/tests/FtRtEvent/PushSupplier.cpp b/TAO/orbsvcs/tests/FtRtEvent/PushSupplier.cpp
index 3c5e660b071..4acd8a08c84 100644
--- a/TAO/orbsvcs/tests/FtRtEvent/PushSupplier.cpp
+++ b/TAO/orbsvcs/tests/FtRtEvent/PushSupplier.cpp
@@ -52,6 +52,7 @@ int PushSupplier_impl::init(CORBA::ORB_ptr orb,
const Options& options
ACE_ENV_ARG_DECL)
{
+ ACE_DEBUG((LM_DEBUG, "PushSupplier_impl::init\n"));
orb_ = orb;
num_iterations_ = options.num_iterations;
reactor_task_.timer_interval_ = options.timer_interval;