summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-26 15:55:59 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-26 15:55:59 +0000
commitd200c2051c92cc193fdebaabd9c4b80935f33496 (patch)
tree1534aad8ba29d75881ad6f4ab980fb04525b42f3 /TAO/orbsvcs/performance-tests
parentc13d83545ee97972e556b1fdc6eb81c318435f76 (diff)
downloadATCD-d200c2051c92cc193fdebaabd9c4b80935f33496.tar.gz
ChangeLogTag:Wed Dec 26 09:07:45 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/performance-tests')
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Federated_Latency/client.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Federated_Latency/server.cpp6
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Federated_Scalability/client.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Federated_Scalability/server.cpp8
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Latency/client.cpp4
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Latency/server.cpp2
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Scalability/client.cpp6
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Scalability/server.cpp2
8 files changed, 16 insertions, 16 deletions
diff --git a/TAO/orbsvcs/performance-tests/EC_Federated_Latency/client.cpp b/TAO/orbsvcs/performance-tests/EC_Federated_Latency/client.cpp
index 92d8a54651d..cf194f76ae1 100644
--- a/TAO/orbsvcs/performance-tests/EC_Federated_Latency/client.cpp
+++ b/TAO/orbsvcs/performance-tests/EC_Federated_Latency/client.cpp
@@ -23,7 +23,7 @@ parse_args (int argc, char *argv[])
switch (c)
{
case 'k':
- ior = get_opts.optarg;
+ ior = get_opts.opt_arg ();
break;
case '?':
diff --git a/TAO/orbsvcs/performance-tests/EC_Federated_Latency/server.cpp b/TAO/orbsvcs/performance-tests/EC_Federated_Latency/server.cpp
index a29e8e88813..a3b8a62dbc9 100644
--- a/TAO/orbsvcs/performance-tests/EC_Federated_Latency/server.cpp
+++ b/TAO/orbsvcs/performance-tests/EC_Federated_Latency/server.cpp
@@ -25,15 +25,15 @@ parse_args (int argc, char *argv[])
switch (c)
{
case 'o':
- ior_output_file = get_opts.optarg;
+ ior_output_file = get_opts.opt_arg ();
break;
case 'p':
- peer_count = ACE_OS::atoi (get_opts.optarg);
+ peer_count = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'i':
- iterations = ACE_OS::atoi (get_opts.optarg);
+ iterations = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'h':
diff --git a/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/client.cpp b/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/client.cpp
index 4fbc1354d46..c1b5fa3c689 100644
--- a/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/client.cpp
+++ b/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/client.cpp
@@ -30,7 +30,7 @@ parse_args (int argc, char *argv[])
switch (c)
{
case 'k':
- ior = get_opts.optarg;
+ ior = get_opts.opt_arg ();
break;
case '?':
diff --git a/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/server.cpp b/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/server.cpp
index 4445bc0cd88..adb75216871 100644
--- a/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/server.cpp
+++ b/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/server.cpp
@@ -34,19 +34,19 @@ parse_args (int argc, char *argv[])
switch (c)
{
case 'o':
- ior_output_file = get_opts.optarg;
+ ior_output_file = get_opts.opt_arg ();
break;
case 'p':
- peer_count = ACE_OS::atoi (get_opts.optarg);
+ peer_count = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'c':
- consumer_count = ACE_OS::atoi (get_opts.optarg);
+ consumer_count = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'i':
- iterations = ACE_OS::atoi (get_opts.optarg);
+ iterations = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'h':
diff --git a/TAO/orbsvcs/performance-tests/EC_Latency/client.cpp b/TAO/orbsvcs/performance-tests/EC_Latency/client.cpp
index ff418703646..8375dd90263 100644
--- a/TAO/orbsvcs/performance-tests/EC_Latency/client.cpp
+++ b/TAO/orbsvcs/performance-tests/EC_Latency/client.cpp
@@ -230,11 +230,11 @@ parse_args (int argc, char *argv[])
break;
case 'i':
- iterations = ACE_OS::atoi (get_opts.optarg);
+ iterations = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'k':
- ior = get_opts.optarg;
+ ior = get_opts.opt_arg ();
break;
case '?':
diff --git a/TAO/orbsvcs/performance-tests/EC_Latency/server.cpp b/TAO/orbsvcs/performance-tests/EC_Latency/server.cpp
index 11b88dfa730..9dff9a44c29 100644
--- a/TAO/orbsvcs/performance-tests/EC_Latency/server.cpp
+++ b/TAO/orbsvcs/performance-tests/EC_Latency/server.cpp
@@ -22,7 +22,7 @@ parse_args (int argc, char *argv[])
switch (c)
{
case 'o':
- ior_output_file = get_opts.optarg;
+ ior_output_file = get_opts.opt_arg ();
break;
case '?':
diff --git a/TAO/orbsvcs/performance-tests/EC_Scalability/client.cpp b/TAO/orbsvcs/performance-tests/EC_Scalability/client.cpp
index 5e27ace423a..bb301cda0c9 100644
--- a/TAO/orbsvcs/performance-tests/EC_Scalability/client.cpp
+++ b/TAO/orbsvcs/performance-tests/EC_Scalability/client.cpp
@@ -251,15 +251,15 @@ parse_args (int argc, char *argv[])
break;
case 'c':
- consumer_count = ACE_OS::atoi (get_opts.optarg);
+ consumer_count = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'i':
- iterations = ACE_OS::atoi (get_opts.optarg);
+ iterations = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'k':
- ior = get_opts.optarg;
+ ior = get_opts.opt_arg ();
break;
case '?':
diff --git a/TAO/orbsvcs/performance-tests/EC_Scalability/server.cpp b/TAO/orbsvcs/performance-tests/EC_Scalability/server.cpp
index eb78a245fd9..43f43105d4d 100644
--- a/TAO/orbsvcs/performance-tests/EC_Scalability/server.cpp
+++ b/TAO/orbsvcs/performance-tests/EC_Scalability/server.cpp
@@ -29,7 +29,7 @@ parse_args (int argc, char *argv[])
switch (c)
{
case 'o':
- ior_output_file = get_opts.optarg;
+ ior_output_file = get_opts.opt_arg ();
break;
case '?':