summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/performance-tests/Sequence_Latency/AMH/Single_Threaded/Roundtrip.cpp13
2 files changed, 13 insertions, 7 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index c8fc018d292..2a85e799890 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Mon Jun 30 11:44:34 2003 Gan Deng <gan.deng@vanderbilt.edu>
+
+ * performa ce-tests/Sequence_Latency/AMH/Single_Threaded/Roundtrip.cpp
+
+ Fixed the code to get rid of the gcc compiling warning about unused
+ parameters in function definitions.
+
Mon Jun 30 11:52:22 2003 Pradeep Gore <pradeep@oomworks.com>
* orbsvcs\examples\Notify\Lanes\Consumer.cpp:
diff --git a/TAO/performance-tests/Sequence_Latency/AMH/Single_Threaded/Roundtrip.cpp b/TAO/performance-tests/Sequence_Latency/AMH/Single_Threaded/Roundtrip.cpp
index 0a5cff53698..f7be48d6140 100644
--- a/TAO/performance-tests/Sequence_Latency/AMH/Single_Threaded/Roundtrip.cpp
+++ b/TAO/performance-tests/Sequence_Latency/AMH/Single_Threaded/Roundtrip.cpp
@@ -13,7 +13,7 @@ Roundtrip::Roundtrip (CORBA::ORB_ptr orb)
void
Roundtrip::test_octet_method (
Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
- const Test::octet_load& ol,
+ const Test::octet_load &,
Test::Timestamp send_time
ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
@@ -27,7 +27,7 @@ Roundtrip::test_octet_method (
void
Roundtrip::test_long_method (
Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
- const Test::long_load& ol,
+ const Test::long_load &,
Test::Timestamp send_time
ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
@@ -41,7 +41,7 @@ Roundtrip::test_long_method (
void
Roundtrip::test_short_method (
Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
- const Test::short_load& ol,
+ const Test::short_load &,
Test::Timestamp send_time
ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
@@ -55,7 +55,7 @@ Roundtrip::test_short_method (
void
Roundtrip::test_char_method (
Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
- const Test::char_load& ol,
+ const Test::char_load &,
Test::Timestamp send_time
ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
@@ -70,7 +70,7 @@ Roundtrip::test_char_method (
void
Roundtrip::test_longlong_method (
Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
- const Test::longlong_load& ol,
+ const Test::longlong_load &,
Test::Timestamp send_time
ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
@@ -84,7 +84,7 @@ Roundtrip::test_longlong_method (
void
Roundtrip::test_double_method (
Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
- const Test::double_load& ol,
+ const Test::double_load &,
Test::Timestamp send_time
ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
@@ -95,7 +95,6 @@ Roundtrip::test_double_method (
//ACE_DEBUG ((LM_DEBUG, "RH completed\n"));
}
-
void
Roundtrip::shutdown (
Test::AMH_RoundtripResponseHandler_ptr _tao_rh