summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp')
-rw-r--r--TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp b/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp
index c2aff04156b..3c40536d884 100644
--- a/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp
+++ b/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp
@@ -11,8 +11,8 @@
ACE_RCSID(Latency, test_i, "$Id$")
void
-Test_i::test_method (CORBA::Long id,
- CORBA::Environment&)
+Test_i::test_method (CORBA::Long id
+ TAO_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
if (TAO_debug_level > 0)
@@ -22,17 +22,17 @@ Test_i::test_method (CORBA::Long id,
}
void
-Test_i::shutdown (const char *orb_id,
- CORBA::Environment& ACE_TRY_ENV)
+Test_i::shutdown (const char *orb_id
+ TAO_ENV_ARG_DECL_NOT_USED TAO_ENV_SINGLE_ARG_PARAMETER)
ACE_THROW_SPEC ((CORBA::SystemException))
{
int argc = 0;
CORBA::ORB_var orb = CORBA::ORB_init (argc,
0,
- orb_id,
- ACE_TRY_ENV);
+ orb_id
+ TAO_ENV_ARG_PARAMETER);
ACE_CHECK;
- orb->shutdown (0, ACE_TRY_ENV);
+ orb->shutdown (0 TAO_ENV_ARG_PARAMETER);
ACE_CHECK;
}