summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Protocols
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-06-20 19:30:28 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-06-20 19:30:28 +0000
commit4876641926e8df393449ba07049411051cbb63da (patch)
tree8f7d24f98f599bf5844574d6b9c75e236484e030 /TAO/performance-tests/Protocols
parentbd4eb4fd8ae0ae661166f44fb31a890726040b2a (diff)
downloadATCD-4876641926e8df393449ba07049411051cbb63da.tar.gz
ChangeLogTag:Sun Jun 20 12:17:50 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/performance-tests/Protocols')
-rw-r--r--TAO/performance-tests/Protocols/client.cpp2
-rw-r--r--TAO/performance-tests/Protocols/server.cpp5
2 files changed, 4 insertions, 3 deletions
diff --git a/TAO/performance-tests/Protocols/client.cpp b/TAO/performance-tests/Protocols/client.cpp
index 3e776bc9d18..444cea53602 100644
--- a/TAO/performance-tests/Protocols/client.cpp
+++ b/TAO/performance-tests/Protocols/client.cpp
@@ -389,7 +389,7 @@ Paced_Worker::run (ACE_ENV_SINGLE_ARG_DECL)
ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
- this->test_->end_test (ACE_ENV_ARG_PARAMETER);
+ this->test_->end_test (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
this->print_stats ();
diff --git a/TAO/performance-tests/Protocols/server.cpp b/TAO/performance-tests/Protocols/server.cpp
index 274ec7a0a8c..d7c97b8fe3e 100644
--- a/TAO/performance-tests/Protocols/server.cpp
+++ b/TAO/performance-tests/Protocols/server.cpp
@@ -130,14 +130,15 @@ test_i::start_test (CORBA::ULong iterations
}
void
-test_i::end_test (ACE_ENV_SINGLE_ARG_DECL)
+test_i::end_test (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->test_end_ =
ACE_OS::gethrtime ();
ACE_DEBUG ((LM_DEBUG,
- "\nTotal invocations expected / received / missed = %d / %d / %d\n",
+ "\nTotal invocations expected / received / missed = "
+ "%d / %d / %d\n",
this->iterations_,
this->number_of_invocations_received_,
this->iterations_ - this->number_of_invocations_received_));