summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-02-18 21:01:22 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-02-18 21:01:22 +0000
commit8d4f84557db77fcacb23ed54fb6d648ceeda5f15 (patch)
tree8987710c73bd5e6c55ac998746ffa7bdae453398
parent9c7fc0fdf4c005df173741bd4e6d488a46f48578 (diff)
downloadATCD-8d4f84557db77fcacb23ed54fb6d648ceeda5f15.tar.gz
ChangeLogTag:Fri Feb 18 13:53:43 2000 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a9
-rw-r--r--TAO/performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/server.cpp4
2 files changed, 9 insertions, 4 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 8192b5449db..181e38605fe 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Fri Feb 18 13:53:43 2000 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/server.cpp:
+ Make argv buffers bigger, so they can handle more options.
+
Fri Feb 18 12:53:13 2000 Nagarajan Surendran <naga@cs.wustl.edu>
* orbsvcs/tests/AVStreams/mpeg/source/mpeg_server/vs.cpp:
@@ -19,8 +24,8 @@ Fri Feb 18 10:44:33 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/tests/Trading/export_test.cpp:
* orbsvcs/tests/Trading/run_test.pl:
The test was too brittle. Now the export test creates a file
- just before going into the event look, the script can use that
- file to launch the import test only after that.
+ just before going into the event look, the script can use that
+ file to launch the import test only after that.
* orbsvcs/Notify_Service/Notify_Service.cpp:
Fixed a syntax error. This program is obviously not compiled
diff --git a/TAO/performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/server.cpp b/TAO/performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/server.cpp
index e69a45d409e..aa83200377e 100644
--- a/TAO/performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/server.cpp
+++ b/TAO/performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/server.cpp
@@ -35,7 +35,7 @@ private:
// used for creating the name of the orb.)
int argc_;
- char *argv_[20];
+ char *argv_[256];
};
// ****************************************************************
@@ -112,7 +112,7 @@ main (int argc, char *argv[])
CORBA::ORB_var orb;
ACE_TRY_NEW_ENV
{
- char *argv_[20];
+ char *argv_[256];
int argc_ = argc;
for (int i = 0; i < argc; ++i)
argv_[i] = argv[i];