summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2004-03-17 23:01:35 +0000
committerSteve Huston <shuston@riverace.com>2004-03-17 23:01:35 +0000
commit8454010e0a9e2946188a5c33f816238af6f4c440 (patch)
tree09c6db0f449e379e719626eea143ee2deb518184 /tests
parentc6406a3dcd15551af0003f3ade83ecbc8428d9c8 (diff)
downloadATCD-8454010e0a9e2946188a5c33f816238af6f4c440.tar.gz
ChangeLogTag:Wed Mar 17 17:55:49 2004 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Proactor_Test.cpp6
-rw-r--r--tests/Proactor_Test_IPV6.cpp6
2 files changed, 8 insertions, 4 deletions
diff --git a/tests/Proactor_Test.cpp b/tests/Proactor_Test.cpp
index 027e0dd53d3..b385cea7780 100644
--- a/tests/Proactor_Test.cpp
+++ b/tests/Proactor_Test.cpp
@@ -247,6 +247,7 @@ MyTask::create_proactor (ProactorType type_proactor, size_t max_op)
break;
# endif /* sun */
+# if !defined(__Lynx__)
case CB:
ACE_NEW_RETURN (proactor_impl,
ACE_POSIX_CB_Proactor (max_op),
@@ -254,6 +255,7 @@ MyTask::create_proactor (ProactorType type_proactor, size_t max_op)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%t) Create Proactor Type = CB\n")));
break;
+# endif /* __Lynx__ */
default:
ACE_DEBUG ((LM_DEBUG,
@@ -1715,11 +1717,11 @@ set_proactor_type (const ACE_TCHAR *ptype)
proactor_type = SUN;
return 1;
#endif /* sun */
-#if defined (__sgi)
+#if !defined (__Lynx__)
case 'C':
proactor_type = CB;
return 1;
-#endif /* __sgi */
+#endif /* __Lynx__ */
default:
break;
}
diff --git a/tests/Proactor_Test_IPV6.cpp b/tests/Proactor_Test_IPV6.cpp
index 2c5cf3d777a..b51456f8c6a 100644
--- a/tests/Proactor_Test_IPV6.cpp
+++ b/tests/Proactor_Test_IPV6.cpp
@@ -238,6 +238,7 @@ MyTask::create_proactor (ProactorType type_proactor, size_t max_op)
break;
# endif /* sun */
+# if !defined(__Lynx__)
case CB:
ACE_NEW_RETURN (proactor_impl,
ACE_POSIX_CB_Proactor (max_op),
@@ -245,6 +246,7 @@ MyTask::create_proactor (ProactorType type_proactor, size_t max_op)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%t) Create Proactor Type = CB\n")));
break;
+# endif /* __Lynx__ */
default:
ACE_DEBUG ((LM_DEBUG,
@@ -1748,11 +1750,11 @@ set_proactor_type (const ACE_TCHAR *ptype)
proactor_type = SUN;
return 1;
#endif /* sun */
-#if defined (__sgi)
+#if !defined (__Lynx__)
case 'C':
proactor_type = CB;
return 1;
-#endif /* __sgi */
+#endif /* __Lynx__ */
default:
break;
}