summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI_Buffering/AMI_Buffering.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/AMI_Buffering/AMI_Buffering.cpp')
-rw-r--r--TAO/tests/AMI_Buffering/AMI_Buffering.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tests/AMI_Buffering/AMI_Buffering.cpp b/TAO/tests/AMI_Buffering/AMI_Buffering.cpp
index 79a75408078..9d7ab0a4455 100644
--- a/TAO/tests/AMI_Buffering/AMI_Buffering.cpp
+++ b/TAO/tests/AMI_Buffering/AMI_Buffering.cpp
@@ -13,29 +13,29 @@ AMI_Buffering::AMI_Buffering (CORBA::ORB_ptr orb,
}
void
-AMI_Buffering::receive_data (const Test::Payload &the_payload,
- CORBA::Environment &ACE_TRY_ENV)
+AMI_Buffering::receive_data (const Test::Payload &the_payload
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->admin_->request_received (the_payload.length (), ACE_TRY_ENV);
+ this->admin_->request_received (the_payload.length () TAO_ENV_ARG_PARAMETER);
}
void
-AMI_Buffering::flush (CORBA::Environment &)
+AMI_Buffering::flush (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
void
-AMI_Buffering::sync (CORBA::Environment &ACE_TRY_ENV)
+AMI_Buffering::sync (TAO_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->admin_->flush (ACE_TRY_ENV);
+ this->admin_->flush (TAO_ENV_SINGLE_ARG_PARAMETER);
}
void
-AMI_Buffering::shutdown (CORBA::Environment &ACE_TRY_ENV)
+AMI_Buffering::shutdown (TAO_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->orb_->shutdown (0, ACE_TRY_ENV);
+ this->orb_->shutdown (0 TAO_ENV_ARG_PARAMETER);
}