summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-10-21 22:25:04 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-10-21 22:25:04 +0000
commitb88fa29c5d4c40cc046a8d18e47b0191110617f7 (patch)
tree05e14d497e69acf3efc0d59ad5380b8918a64fd0
parentc0493aa808630508c802f2ed8e84df4592786c59 (diff)
downloadATCD-b88fa29c5d4c40cc046a8d18e47b0191110617f7.tar.gz
ChangeLogTag:Sun Oct 21 15:22:57 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--tests/Proactor_Test.cpp6
4 files changed, 24 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7526304e8ad..c1168d38ea2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sun Oct 21 15:22:57 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/Proactor_Test.cpp:
+
+ Fixed warning about deprecated conversion of "const char *" to
+ "char *" exhibited by GCC 3.0.x builds.
+
Sun Oct 21 12:50:39 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/LSOCK.cpp: The ACE_LSOCK::recv_handle() was returning success
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 7526304e8ad..c1168d38ea2 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Sun Oct 21 15:22:57 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/Proactor_Test.cpp:
+
+ Fixed warning about deprecated conversion of "const char *" to
+ "char *" exhibited by GCC 3.0.x builds.
+
Sun Oct 21 12:50:39 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/LSOCK.cpp: The ACE_LSOCK::recv_handle() was returning success
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 7526304e8ad..c1168d38ea2 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Sun Oct 21 15:22:57 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/Proactor_Test.cpp:
+
+ Fixed warning about deprecated conversion of "const char *" to
+ "char *" exhibited by GCC 3.0.x builds.
+
Sun Oct 21 12:50:39 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/LSOCK.cpp: The ACE_LSOCK::recv_handle() was returning success
diff --git a/tests/Proactor_Test.cpp b/tests/Proactor_Test.cpp
index b13b6bd5eb7..c8c3ef80b59 100644
--- a/tests/Proactor_Test.cpp
+++ b/tests/Proactor_Test.cpp
@@ -64,7 +64,7 @@ static int max_aio_operations = 0;
static int both = 0;
// Host that we're connecting to.
-static ACE_TCHAR *host = 0;
+static const ACE_TCHAR *host = 0;
// number of Senders instances
static int senders = 1;
@@ -1114,8 +1114,8 @@ parse_args (int argc, ACE_TCHAR *argv[])
{
both = 1; // client and server simultaneosly
duplex = 1; // full duplex is on
- host= ACE_TEXT ("localhost"); // server to connect
- port= ACE_DEFAULT_SERVER_PORT; // port to connect/listen
+ host = ACE_TEXT ("localhost"); // server to connect
+ port = ACE_DEFAULT_SERVER_PORT; // port to connect/listen
max_aio_operations = 512; // POSIX Proactor params
#if defined (sun)
proactor_type = 3; // Proactor type for SunOS