summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-02 19:24:42 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-02 19:24:42 +0000
commit987253f00d67b1e13e126c2d7d9f6a8177e28628 (patch)
tree720e8d956bd97546da74ca2bb077d681069d4e7c
parentf167c9df1bf5e90e83df005a0fe9ed1cbc0a3ddf (diff)
downloadATCD-987253f00d67b1e13e126c2d7d9f6a8177e28628.tar.gz
Thu Oct 2 19:23:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/ChangeLog14
-rw-r--r--TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/CPU/client.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/client.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/driver.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline/client.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/client.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/RTEvent/Roundtrip/client.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/RTEvent/TCP_Baseline/client.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/RTEvent/lib/Control.cpp2
-rw-r--r--TAO/orbsvcs/tests/Event/Performance/Latency.cpp2
-rw-r--r--TAO/orbsvcs/tests/InterfaceRepo/Latency_Test/Latency_Query_Client.cpp2
11 files changed, 24 insertions, 10 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 0f3ee7134e5..c1a6e6ec7c3 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,17 @@
+Thu Oct 2 19:23:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * orbsvcs/performance-tests/LoadBalancing/LBPerf/CPU/client.cpp
+ * orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/client.cpp
+ * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/driver.cpp
+ * orbsvcs/performance-tests/RTEvent/lib/Control.cpp
+ * orbsvcs/performance-tests/RTEvent/Roundtrip/client.cpp
+ * orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline/client.cpp
+ * orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/client.cpp
+ * orbsvcs/performance-tests/RTEvent/TCP_Baseline/client.cpp
+ * orbsvcs/tests/Event/Performance/Latency.cpp
+ * orbsvcs/tests/InterfaceRepo/Latency_Test/Latency_Query_Client.cpp
+ ACE_TCHAR fixes
+
Thu Oct 2 19:20:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Callback/client.cpp
diff --git a/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/CPU/client.cpp b/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/CPU/client.cpp
index 93ecb3c700d..de5c83a8867 100644
--- a/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/CPU/client.cpp
+++ b/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/CPU/client.cpp
@@ -160,7 +160,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
if (do_dump_history)
{
- history.dump_samples ("HISTORY", gsf);
+ history.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats stats;
diff --git a/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/client.cpp b/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/client.cpp
index 47b779b49b1..917377f31c8 100644
--- a/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/client.cpp
+++ b/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/client.cpp
@@ -160,7 +160,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
if (do_dump_history)
{
- history.dump_samples ("HISTORY", gsf);
+ history.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats stats;
diff --git a/TAO/orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/driver.cpp b/TAO/orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/driver.cpp
index b76a5e70eb8..4843a18ed81 100644
--- a/TAO/orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/driver.cpp
+++ b/TAO/orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/driver.cpp
@@ -202,7 +202,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
high_priority_group.consumer ()->sample_history ();
if (options.dump_history)
{
- history.dump_samples ("HISTORY", gsf);
+ history.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats high_priority_stats;
diff --git a/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline/client.cpp b/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline/client.cpp
index b3d35fa33e1..91f36dea63a 100644
--- a/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline/client.cpp
+++ b/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline/client.cpp
@@ -236,7 +236,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
ACE_Sample_History &history = high_priority.sample_history;
if (options.dump_history)
{
- history.dump_samples ("HISTORY", gsf);
+ history.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats high_priority_stats;
diff --git a/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/client.cpp b/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/client.cpp
index 487f2fa7bd6..21ba728121e 100644
--- a/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/client.cpp
+++ b/TAO/orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/client.cpp
@@ -281,7 +281,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
high_priority.callback->sample_history ();
if (options.dump_history)
{
- history.dump_samples ("HISTORY", gsf);
+ history.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats high_priority_stats;
diff --git a/TAO/orbsvcs/performance-tests/RTEvent/Roundtrip/client.cpp b/TAO/orbsvcs/performance-tests/RTEvent/Roundtrip/client.cpp
index 7193f680aed..bb3905eca7b 100644
--- a/TAO/orbsvcs/performance-tests/RTEvent/Roundtrip/client.cpp
+++ b/TAO/orbsvcs/performance-tests/RTEvent/Roundtrip/client.cpp
@@ -189,7 +189,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
high_priority_group.consumer ()->sample_history ();
if (options.dump_history)
{
- history.dump_samples ("HISTORY", gsf);
+ history.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats high_priority_stats;
diff --git a/TAO/orbsvcs/performance-tests/RTEvent/TCP_Baseline/client.cpp b/TAO/orbsvcs/performance-tests/RTEvent/TCP_Baseline/client.cpp
index f142ddce2df..a76fc1f6064 100644
--- a/TAO/orbsvcs/performance-tests/RTEvent/TCP_Baseline/client.cpp
+++ b/TAO/orbsvcs/performance-tests/RTEvent/TCP_Baseline/client.cpp
@@ -106,7 +106,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
ACE_Sample_History &history = hi_task.sample_history;
if (options.dump_history)
{
- history.dump_samples ("HISTORY", gsf);
+ history.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats high_priority_stats;
diff --git a/TAO/orbsvcs/performance-tests/RTEvent/lib/Control.cpp b/TAO/orbsvcs/performance-tests/RTEvent/lib/Control.cpp
index 48abdd67798..189ae8297ee 100644
--- a/TAO/orbsvcs/performance-tests/RTEvent/lib/Control.cpp
+++ b/TAO/orbsvcs/performance-tests/RTEvent/lib/Control.cpp
@@ -156,7 +156,7 @@ Control::join (Federated_Test::Peer_ptr peer)
if (this->do_dump_history_)
{
- history.dump_samples ("HISTORY", fake_scale_factor);
+ history.dump_samples (ACE_TEXT("HISTORY"), fake_scale_factor);
}
}
}
diff --git a/TAO/orbsvcs/tests/Event/Performance/Latency.cpp b/TAO/orbsvcs/tests/Event/Performance/Latency.cpp
index 4f4c9edc75b..279aaad2520 100644
--- a/TAO/orbsvcs/tests/Event/Performance/Latency.cpp
+++ b/TAO/orbsvcs/tests/Event/Performance/Latency.cpp
@@ -197,7 +197,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
ACE_DEBUG ((LM_DEBUG, "Done (%d)\n", gsf));
if (do_dump_history)
{
- history.dump_samples ("HISTORY", gsf);
+ history.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats stats;
diff --git a/TAO/orbsvcs/tests/InterfaceRepo/Latency_Test/Latency_Query_Client.cpp b/TAO/orbsvcs/tests/InterfaceRepo/Latency_Test/Latency_Query_Client.cpp
index 54c3e449535..731b27c808c 100644
--- a/TAO/orbsvcs/tests/InterfaceRepo/Latency_Test/Latency_Query_Client.cpp
+++ b/TAO/orbsvcs/tests/InterfaceRepo/Latency_Test/Latency_Query_Client.cpp
@@ -124,7 +124,7 @@ Latency_Query_Client::run (void)
if (this->do_dump_history_)
{
- history.dump_samples ("HISTORY", gsf);
+ history.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats stats;