summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-05-06 19:27:35 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-05-06 19:27:35 +0000
commitc5b999694039a1b6fb1963b640c4f315f84a2d73 (patch)
tree3474a873b19bd43b78b1d30180b9d4273ad3f9a2
parent006e6f84f163bbf1ac6fa8bbec6b0102e3f4ee0b (diff)
downloadATCD-c5b999694039a1b6fb1963b640c4f315f84a2d73.tar.gz
ChangeLogTag: Mon May 6 14:26:52 2002 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-02a5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rw-r--r--tests/Proactor_Test.cpp4
4 files changed, 18 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b43a41b2f5..b8164270eb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon May 6 14:26:52 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Proactor_Test.cpp: Fixed unused variable warnings in
+ non-win32 builds.
+
Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* bin/generate_performance_chart.sh: Changed the range of the y
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 3b43a41b2f5..b8164270eb6 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Mon May 6 14:26:52 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Proactor_Test.cpp: Fixed unused variable warnings in
+ non-win32 builds.
+
Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* bin/generate_performance_chart.sh: Changed the range of the y
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 3b43a41b2f5..b8164270eb6 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Mon May 6 14:26:52 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Proactor_Test.cpp: Fixed unused variable warnings in
+ non-win32 builds.
+
Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* bin/generate_performance_chart.sh: Changed the range of the y
diff --git a/tests/Proactor_Test.cpp b/tests/Proactor_Test.cpp
index 0dc3f63e4da..264613ee86c 100644
--- a/tests/Proactor_Test.cpp
+++ b/tests/Proactor_Test.cpp
@@ -88,6 +88,7 @@ static const size_t MIN_TIME = 1; // min 1 sec
static const size_t MAX_TIME = 3600; // max 1 hour
static size_t seconds = 2; // default time to run - 2 seconds
+#if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE))
static ACE_TCHAR request_line[] =
ACE_TEXT ("GET / HTTP/1.1\r\n");
@@ -96,10 +97,11 @@ static ACE_TCHAR headers[] =
ACE_TEXT ("Accept-Language: C++\r\n")
ACE_TEXT ("Accept-Encoding: gzip, deflate\r\n")
ACE_TEXT ("User-Agent: Proactor_Test/1.0 (non-compatible)\r\n")
- ACE_TEXT ("Connection: Keep-Alive\r\n");
+ ACE_TEXT ("Connection: Keep-Alive\r\n");
static ACE_TCHAR end_of_request_header[] =
ACE_TEXT ("\r\n");
+#endif /* (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) */
static ACE_TCHAR complete_message[] =
"GET / HTTP/1.1\r\n"