summaryrefslogtreecommitdiff
path: root/TAO/performance-tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-09 09:43:46 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-09 09:43:46 +0000
commitf00aee57097deb14507dfd823a8e3a13dff1ad73 (patch)
treee24c39c55b1bc279c3eb1651f57c9838d9894f44 /TAO/performance-tests
parentcd4af1a43f4c11479c0d2ff37d81488da9e04a82 (diff)
downloadATCD-f00aee57097deb14507dfd823a8e3a13dff1ad73.tar.gz
Thu Oct 9 09:43:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/performance-tests')
-rw-r--r--TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp10
-rw-r--r--TAO/performance-tests/POA/Demux/demux_test_client.cpp2
-rw-r--r--TAO/performance-tests/POA/Demux/demux_test_client.h2
3 files changed, 7 insertions, 7 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp b/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp
index 706fdf63f8a..fb0c1c74cd0 100644
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp
@@ -591,17 +591,17 @@ Client_i::print_priority_inversion_stats (void)
int
Client_i::start_servant (void)
{
- char high_thread_args[BUFSIZ];
+ ACE_TCHAR high_thread_args[BUFSIZ];
ACE_OS::sprintf (high_thread_args,
- "-ORBSndSock 32768 "
- "-ORBRcvSock 32768 ");
+ ACE_TEXT("-ORBSndSock 32768 ")
+ ACE_TEXT("-ORBRcvSock 32768 "));
Cubit_Task *high_priority_task;
ACE_NEW_RETURN (high_priority_task,
- Cubit_Task ((const char *) high_thread_args,
- (const char *) "internet",
+ Cubit_Task (high_thread_args,
+ "internet",
(u_int) 1,
&this->server_thread_manager_,
(u_int) 0), // task id 0.
diff --git a/TAO/performance-tests/POA/Demux/demux_test_client.cpp b/TAO/performance-tests/POA/Demux/demux_test_client.cpp
index 15d9ff96182..27605424972 100644
--- a/TAO/performance-tests/POA/Demux/demux_test_client.cpp
+++ b/TAO/performance-tests/POA/Demux/demux_test_client.cpp
@@ -47,7 +47,7 @@ Demux_Test_Client::~Demux_Test_Client (void)
//
int
-Demux_Test_Client::init (int argc, char *argv [])
+Demux_Test_Client::init (int argc, ACE_TCHAR *argv [])
{
this->argc_ = argc;
this->argv_ = argv;
diff --git a/TAO/performance-tests/POA/Demux/demux_test_client.h b/TAO/performance-tests/POA/Demux/demux_test_client.h
index be16b747c77..bdff164a9c4 100644
--- a/TAO/performance-tests/POA/Demux/demux_test_client.h
+++ b/TAO/performance-tests/POA/Demux/demux_test_client.h
@@ -50,7 +50,7 @@ public:
~Demux_Test_Client (void);
// DTOR
- int init (int argc, char *argv []);
+ int init (int argc, ACE_TCHAR *argv []);
// initialize the client test bed
int run (void);