summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2084_Regression/Hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2084_Regression/Hello.cpp')
-rw-r--r--TAO/tests/Bug_2084_Regression/Hello.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Bug_2084_Regression/Hello.cpp b/TAO/tests/Bug_2084_Regression/Hello.cpp
index e19ff455c09..ffc76400566 100644
--- a/TAO/tests/Bug_2084_Regression/Hello.cpp
+++ b/TAO/tests/Bug_2084_Regression/Hello.cpp
@@ -15,7 +15,7 @@ ACE_RCSID(Hello, Hello, "$Id$")
}
char *
-Hello::get_string (::CORBA::Long caller_threadid ACE_ENV_ARG_DECL)
+Hello::get_string (::CORBA::Long caller_threadid)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
@@ -57,12 +57,12 @@ Hello::get_string (::CORBA::Long caller_threadid ACE_ENV_ARG_DECL)
}
void
-Hello::shutdown (ACE_ENV_SINGLE_ARG_DECL)
+Hello::shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
// Give the client thread time to return from the collocated
// call to this method before shutting down the ORB. We sleep
// to avoid BAD_INV_ORDER exceptions on fast dual processor machines.
ACE_OS::sleep (1);
- this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
+ this->orb_->shutdown (0);
}