summaryrefslogtreecommitdiff
path: root/CIAO/performance-tests/Protocols
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-03-20 18:59:49 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-03-20 18:59:49 +0000
commitcfae01080697f758fd9167e5794c5884c1fcbec0 (patch)
tree1010b9ef63c18a58492d8f12748d73ec58159eb8 /CIAO/performance-tests/Protocols
parent4ba76d2643ca4a2e7cd4f4807f150230c55c6ef5 (diff)
downloadATCD-cfae01080697f758fd9167e5794c5884c1fcbec0.tar.gz
Fri Mar 20 19:00:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* DAnCE/DomainApplicationManager/Node_Locator.cpp * DAnCE/Plan_Launcher/Plan_Launcher_Base_Impl.cpp * DAnCE/tests/NameServiceTest/srv_main.cpp * performance-tests/Benchmark/RoundTrip/client.cpp * performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec.cpp * performance-tests/Protocols/Controller/Controller.cpp * performance-tests/Protocols/Receiver/Receiver_exec.cpp * performance-tests/Protocols/Sender/Sender_exec.cpp * tests/Bug_2130_Regression/SEC_CheckPoint/controller.cpp * tests/CIAO_ComponentServer/Basic/client.cpp * tools/Config_Handlers/Basic_Deployment_Data.hpp Fixed unicode compile problems
Diffstat (limited to 'CIAO/performance-tests/Protocols')
-rw-r--r--CIAO/performance-tests/Protocols/Controller/Controller.cpp2
-rw-r--r--CIAO/performance-tests/Protocols/Receiver/Receiver_exec.cpp6
-rw-r--r--CIAO/performance-tests/Protocols/Sender/Sender_exec.cpp6
3 files changed, 7 insertions, 7 deletions
diff --git a/CIAO/performance-tests/Protocols/Controller/Controller.cpp b/CIAO/performance-tests/Protocols/Controller/Controller.cpp
index 95293293f3a..a2320772c61 100644
--- a/CIAO/performance-tests/Protocols/Controller/Controller.cpp
+++ b/CIAO/performance-tests/Protocols/Controller/Controller.cpp
@@ -27,7 +27,7 @@ static int corba_priority = 0;
static const char *test_type = "PACED";
static int
-parse_args (int argc, char **argv)
+parse_args (int argc, ACE_TCHAR **argv)
{
ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("a:b:c:d:e:i:m:p:r:s:t:u:v:w:x:y:z:"));
int c;
diff --git a/CIAO/performance-tests/Protocols/Receiver/Receiver_exec.cpp b/CIAO/performance-tests/Protocols/Receiver/Receiver_exec.cpp
index 9e806b77f9c..e1bb4ca3196 100644
--- a/CIAO/performance-tests/Protocols/Receiver/Receiver_exec.cpp
+++ b/CIAO/performance-tests/Protocols/Receiver/Receiver_exec.cpp
@@ -74,7 +74,7 @@ namespace CIDL_ReceiverImpl
if (do_dump_history)
{
- this->inter_arrival_times_->dump_samples ("Inter-arrival times", gsf);
+ this->inter_arrival_times_->dump_samples (ACE_TEXT("Inter-arrival times"), gsf);
}
ACE_Basic_Stats stats;
@@ -116,9 +116,9 @@ namespace CIDL_ReceiverImpl
"Session id ends %d\n",
this->session_id_));
- stats.dump_results ("Inter-arrival times", gsf);
+ stats.dump_results (ACE_TEXT("Inter-arrival times"), gsf);
- ACE_Throughput_Stats::dump_throughput ("Inter-arrival times", gsf,
+ ACE_Throughput_Stats::dump_throughput (ACE_TEXT("Inter-arrival times"), gsf,
this->test_end_ - this->test_start_,
stats.samples_count ());
}
diff --git a/CIAO/performance-tests/Protocols/Sender/Sender_exec.cpp b/CIAO/performance-tests/Protocols/Sender/Sender_exec.cpp
index da68ddafb7b..942127e8d57 100644
--- a/CIAO/performance-tests/Protocols/Sender/Sender_exec.cpp
+++ b/CIAO/performance-tests/Protocols/Sender/Sender_exec.cpp
@@ -290,14 +290,14 @@ Worker::print_stats (void)
{
if (this->do_dump_history_)
{
- this->history_.dump_samples ("HISTORY", gsf);
+ this->history_.dump_samples (ACE_TEXT("HISTORY"), gsf);
}
ACE_Basic_Stats stats;
this->history_.collect_basic_stats (stats);
- stats.dump_results ("Total", gsf);
+ stats.dump_results (ACE_TEXT("Total"), gsf);
- ACE_Throughput_Stats::dump_throughput ("Total", gsf,
+ ACE_Throughput_Stats::dump_throughput (ACE_TEXT("Total"), gsf,
this->test_end_ - this->test_start_,
this->iterations_);
}