summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Protocols
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-10-02 16:34:27 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-10-02 16:34:27 +0000
commitb94ed10d7217c74fe7d83cd6eac694c3a80aead3 (patch)
treefa662b186c9cc583fc0822dc654a788697ed9209 /TAO/performance-tests/Protocols
parent7a8b858108d30826f3feca93ad73a060d044a83a (diff)
downloadATCD-b94ed10d7217c74fe7d83cd6eac694c3a80aead3.tar.gz
ChangeLogTag:Sat Oct 2 16:28:06 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/performance-tests/Protocols')
-rw-r--r--TAO/performance-tests/Protocols/distributor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/performance-tests/Protocols/distributor.cpp b/TAO/performance-tests/Protocols/distributor.cpp
index 9ff40534e85..b212e9bc150 100644
--- a/TAO/performance-tests/Protocols/distributor.cpp
+++ b/TAO/performance-tests/Protocols/distributor.cpp
@@ -188,11 +188,11 @@ test_i::start_test (CORBA::Long session_id,
test_protocol_setup:
- ACE_TRY
+ ACE_TRY_EX (B1)
{
// Send a message to ensure that the connection is setup.
this->receiver_->oneway_sync (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ ACE_TRY_CHECK_EX (B1);
goto test_protocol_success;
}
@@ -231,7 +231,7 @@ test_i::start_test (CORBA::Long session_id,
base_protocol_setup:
- ACE_TRY
+ ACE_TRY_EX (B2)
{
// Let the server know what to expect..
this->receiver_->start_test (session_id,
@@ -240,7 +240,7 @@ test_i::start_test (CORBA::Long session_id,
message_size,
iterations
ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ ACE_TRY_CHECK_EX (B2);
goto base_protocol_success;
}