summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-30 16:50:27 +0000
committerdengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-30 16:50:27 +0000
commit7285c80d2b7245d01338aa8af3bb81b23eb442b5 (patch)
tree38f5c643ca62bf0ae6070e3fcc801ce71d9d2ec5
parent191cdeb8d70f61c61c252189a9389a6c0a2883a1 (diff)
downloadATCD-7285c80d2b7245d01338aa8af3bb81b23eb442b5.tar.gz
ChangeLogTag: Mon Jun 30 11:44:34 2003 Gan Deng <gan.deng@vanderbilt.edu>
-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