summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/Session_Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/Session_Factory.cpp')
-rw-r--r--TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/Session_Factory.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/Session_Factory.cpp b/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/Session_Factory.cpp
index 735a8d0ec84..eebb4855cc9 100644
--- a/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/Session_Factory.cpp
+++ b/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/Session_Factory.cpp
@@ -5,8 +5,8 @@
#include "Session.h"
#include "Servant_var.h"
-ACE_RCSID (TAO_RTEC_Perf_RTCORBA_Callback,
- Session_Factory,
+ACE_RCSID (TAO_RTEC_Perf_RTCORBA_Callback,
+ Session_Factory,
"$Id$")
Session_Factory::Session_Factory (CORBA::ORB_ptr orb,
@@ -17,25 +17,24 @@ Session_Factory::Session_Factory (CORBA::ORB_ptr orb,
}
Test::Session_ptr
-Session_Factory::create_new_session (Test::Callback_ptr cb
- ACE_ENV_ARG_DECL)
+Session_Factory::create_new_session (Test::Callback_ptr cb)
ACE_THROW_SPEC ((CORBA::SystemException))
{
Servant_var<Session> session_impl (new Session (cb,
this->poa_.in ()));
- return session_impl->_this (ACE_ENV_SINGLE_ARG_PARAMETER);
+ return session_impl->_this ();
}
void
-Session_Factory::shutdown (ACE_ENV_SINGLE_ARG_DECL)
+Session_Factory::shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
+ this->orb_->shutdown (0);
}
PortableServer::POA_ptr
-Session_Factory::_default_POA (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+Session_Factory::_default_POA (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return PortableServer::POA::_duplicate (this->poa_.in ());