summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-20 20:20:05 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-20 20:20:05 +0000
commit27e1c37184ad0b42f61635e09f06daecae28c546 (patch)
tree5d754ac7baa25f1758e94dfa68db79b3de291228
parent41feda131ed4c3888e25db2cb980311b68d8d6d0 (diff)
downloadATCD-27e1c37184ad0b42f61635e09f06daecae28c546.tar.gz
Tue Apr 20 15:10:33 1999 Irfan Pyarali <irfan@cs.wustl.edu>
-rw-r--r--ChangeLog-99b8
-rw-r--r--tests/Reactor_Performance_Test.cpp4
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index e152d86dc6c..dd3d470f683 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,11 @@
+Tue Apr 20 15:10:33 1999 Irfan Pyarali <irfan@cs.wustl.edu>
+
+ * tests/Reactor_Performance_Test.cpp: Changed the default number
+ of connections (<opt_nconnection>) from 20 to 5 for NT. This
+ seems reasonable since the default backlog is 5. Once we have
+ the ability to set the backlog from the ACE_Acceptor class, we
+ can increase this number.
+
Tue Apr 20 13:55:34 1999 Joe Hoffert <joeh@cs.wustl.edu>
* ace/OS.i: Fixed ACE_OS::t_free to free memory if pointer is not
diff --git a/tests/Reactor_Performance_Test.cpp b/tests/Reactor_Performance_Test.cpp
index 63436c70624..8a3f42a9d38 100644
--- a/tests/Reactor_Performance_Test.cpp
+++ b/tests/Reactor_Performance_Test.cpp
@@ -42,11 +42,7 @@ USELIB("..\ace\aced.lib");
#if defined (ACE_HAS_THREADS)
// Number of client (user) threads
-#if (!defined (ACE_WIN32) || (defined (ACE_HAS_WINNT4) && ACE_HAS_WINNT4 != 0))
-static int opt_nconnections = 20;
-#else /* ACE_WIN32 || (ACE_HAS_WINNT4 && ACE_HAS_WINNT4 != 0) */
static int opt_nconnections = 5;
-#endif /* ACE_WIN32 || (ACE_HAS_WINNT4 && ACE_HAS_WINNT4 != 0) */
// Number of data exchanges
static int opt_nloops = 200;