summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Latency/AMI/Roundtrip_Handler.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-12-08 21:59:30 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-12-08 21:59:30 +0000
commit63165b00e2d667e39e15cf084128d94a563d484e (patch)
tree6939cf1ed0a80ce8a3224d33f3d23c0e1b9a517f /TAO/performance-tests/Latency/AMI/Roundtrip_Handler.cpp
parent6579bccb3a3f22f882ef908ad5f7e1a65b00b133 (diff)
downloadATCD-63165b00e2d667e39e15cf084128d94a563d484e.tar.gz
Merged corba-env-clean branch.
Diffstat (limited to 'TAO/performance-tests/Latency/AMI/Roundtrip_Handler.cpp')
-rw-r--r--TAO/performance-tests/Latency/AMI/Roundtrip_Handler.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/performance-tests/Latency/AMI/Roundtrip_Handler.cpp b/TAO/performance-tests/Latency/AMI/Roundtrip_Handler.cpp
index d4b20578bb9..896ac02f08d 100644
--- a/TAO/performance-tests/Latency/AMI/Roundtrip_Handler.cpp
+++ b/TAO/performance-tests/Latency/AMI/Roundtrip_Handler.cpp
@@ -23,8 +23,8 @@ Roundtrip_Handler::dump_results (ACE_UINT32 gsf)
}
void
-Roundtrip_Handler::test_method (Test::Timestamp send_time,
- CORBA::Environment &)
+Roundtrip_Handler::test_method (Test::Timestamp send_time
+ TAO_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->pending_callbacks_--;
@@ -34,14 +34,14 @@ Roundtrip_Handler::test_method (Test::Timestamp send_time,
}
void
-Roundtrip_Handler::test_method_excep (Test::AMI_RoundtripExceptionHolder *holder,
- CORBA::Environment &ACE_TRY_ENV)
+Roundtrip_Handler::test_method_excep (Test::AMI_RoundtripExceptionHolder *holder
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_TRY
{
this->pending_callbacks_--;
- holder->raise_test_method (ACE_TRY_ENV);
+ holder->raise_test_method (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
ACE_CATCHANY
@@ -52,19 +52,19 @@ Roundtrip_Handler::test_method_excep (Test::AMI_RoundtripExceptionHolder *holder
}
void
-Roundtrip_Handler::shutdown (CORBA::Environment &)
+Roundtrip_Handler::shutdown (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
void
-Roundtrip_Handler::shutdown_excep (Test::AMI_RoundtripExceptionHolder *holder,
- CORBA::Environment &ACE_TRY_ENV)
+Roundtrip_Handler::shutdown_excep (Test::AMI_RoundtripExceptionHolder *holder
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_TRY
{
- holder->raise_shutdown (ACE_TRY_ENV);
+ holder->raise_shutdown (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
ACE_CATCHANY