summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-30 17:23:46 +0000
committerdengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-30 17:23:46 +0000
commit344f2871e07f98b2e1378517441a7ebbe1cb9775 (patch)
treede2e21142dc14f886b37a10c143748f22514811d
parent7285c80d2b7245d01338aa8af3bb81b23eb442b5 (diff)
downloadATCD-344f2871e07f98b2e1378517441a7ebbe1cb9775.tar.gz
ChangeLogTag: Mon Jun 30 12:19:22 2003 Gan Deng <gan.deng@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog10
-rw-r--r--TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp12
-rw-r--r--TAO/performance-tests/Sequence_Latency/Thread_Pool/Client_Task.cpp12
3 files changed, 21 insertions, 13 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 2a85e799890..d03064c8e1c 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,6 +1,14 @@
+Mon Jun 30 12:19:22 2003 Gan Deng <gan.deng@vanderbilt.edu>
+
+ * performance-tests/Sequence_Latency/Thread_Pool/Client_Task.cpp
+ * performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp
+
+ Tried to modify the code to get rid of the compiling warning messages for the
+ build named "RH71_Explicit_Templates".
+
Mon Jun 30 11:44:34 2003 Gan Deng <gan.deng@vanderbilt.edu>
- * performa ce-tests/Sequence_Latency/AMH/Single_Threaded/Roundtrip.cpp
+ * performance-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.
diff --git a/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp b/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp
index ae5c11499fe..f2d6018e04e 100644
--- a/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp
+++ b/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp
@@ -25,32 +25,32 @@ Client_Task::svc (void)
this->validate_connection (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
- if (ACE_OS::strcmp (this->data_type_, "octet") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "octet") == 0 )
{
this->test_octet_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "long") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "long") == 0 )
{
this->test_long_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "short") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "short") == 0 )
{
this->test_short_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "char") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "char") == 0 )
{
this->test_char_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "longlong") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "longlong") == 0 )
{
this->test_longlong_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "double") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "double") == 0 )
{
this->test_double_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
diff --git a/TAO/performance-tests/Sequence_Latency/Thread_Pool/Client_Task.cpp b/TAO/performance-tests/Sequence_Latency/Thread_Pool/Client_Task.cpp
index 997f27f9336..95a6b0941c7 100644
--- a/TAO/performance-tests/Sequence_Latency/Thread_Pool/Client_Task.cpp
+++ b/TAO/performance-tests/Sequence_Latency/Thread_Pool/Client_Task.cpp
@@ -25,32 +25,32 @@ Client_Task::svc (void)
this->validate_connection (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
- if (ACE_OS::strcmp (this->data_type_, "octet") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "octet") == 0 )
{
this->test_octet_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "long") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "long") == 0 )
{
this->test_long_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "short") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "short") == 0 )
{
this->test_short_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "char") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "char") == 0 )
{
this->test_char_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "longlong") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "longlong") == 0 )
{
this->test_longlong_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "double") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "double") == 0 )
{
this->test_double_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;