summaryrefslogtreecommitdiff
path: root/tests/Reactor_Performance_Test.cpp
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-03 01:46:00 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-03 01:46:00 +0000
commit01ced9d0ade8438f99cb2264a8c1a1b25d6d4e65 (patch)
treee70020f254a532827dcd8e6cb873e488bc44e78d /tests/Reactor_Performance_Test.cpp
parent775e7a9943f68a740475cb680c037a8716b67e0f (diff)
downloadATCD-01ced9d0ade8438f99cb2264a8c1a1b25d6d4e65.tar.gz
Typo.
Diffstat (limited to 'tests/Reactor_Performance_Test.cpp')
-rw-r--r--tests/Reactor_Performance_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Reactor_Performance_Test.cpp b/tests/Reactor_Performance_Test.cpp
index 66c0b5e2f61..b9fd69f5cfe 100644
--- a/tests/Reactor_Performance_Test.cpp
+++ b/tests/Reactor_Performance_Test.cpp
@@ -42,11 +42,11 @@ USELIB("..\ace\aced.lib");
#if defined (ACE_HAS_THREADS)
// Number of client (user) threads
-#if defined (ACE_WIN32) && !defined (ACE_HAS_WINNT4)
+#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;
-#else /* ACE_WIN32 && !ACE_HAS_WINNT4 */
-static int opt_nconnections = 5;
-#endif /* ACE_WIN32 && !ACE_HAS_WINNT4 */
+#endif /* ACE_WIN32 || (ACE_HAS_WINNT4 && ACE_HAS_WINNT4 != 0) */
// Number of data exchanges
static int opt_nloops = 200;