summaryrefslogtreecommitdiff
path: root/ACE/tests/Proactor_Test_IPV6.cpp
diff options
context:
space:
mode:
authorolli <olli@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-02 10:53:07 +0000
committerolli <olli@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-02 10:53:07 +0000
commit1f6099cd974ff9d388c6d53ab19aee2f21002a37 (patch)
tree42c7ec8a65d47154539c304b9c0426cf8300b018 /ACE/tests/Proactor_Test_IPV6.cpp
parent70f31f8df1129d39f91a876ff9227ca29e49e085 (diff)
downloadATCD-1f6099cd974ff9d388c6d53ab19aee2f21002a37.tar.gz
ChangeLogTag: Fri Feb 2 10:47:55 UTC 2007 Olli Savia <ops@iki.fi>
Diffstat (limited to 'ACE/tests/Proactor_Test_IPV6.cpp')
-rw-r--r--ACE/tests/Proactor_Test_IPV6.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/tests/Proactor_Test_IPV6.cpp b/ACE/tests/Proactor_Test_IPV6.cpp
index 2358928891f..9958d41e8d0 100644
--- a/ACE/tests/Proactor_Test_IPV6.cpp
+++ b/ACE/tests/Proactor_Test_IPV6.cpp
@@ -20,7 +20,7 @@ ACE_RCSID (tests,
Proactor_Test,
"$Id$")
-#if defined (ACE_HAS_THREADS) && (defined (ACE_HAS_WIN32_OVERLAPPED_IO) || defined (ACE_HAS_AIO_CALLS)) && !defined (ACE_HAS_BROKEN_SIGEVENT_STRUCT)
+#if defined (ACE_HAS_THREADS) && (defined (ACE_HAS_WIN32_OVERLAPPED_IO) || defined (ACE_HAS_AIO_CALLS))
// This only works on Win32 platforms and on Unix platforms
// supporting POSIX aio calls.
@@ -253,7 +253,7 @@ MyTask::create_proactor (ProactorType type_proactor, size_t max_op)
break;
# endif /* sun */
-# if !defined(__Lynx__)
+# if !defined(ACE_HAS_BROKEN_SIGEVENT_STRUCT)
case CB:
ACE_NEW_RETURN (proactor_impl,
ACE_POSIX_CB_Proactor (max_op),
@@ -261,7 +261,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__ */
+# endif /* !ACE_HAS_BROKEN_SIGEVENT_STRUCT */
default:
ACE_DEBUG ((LM_DEBUG,
@@ -1809,11 +1809,11 @@ set_proactor_type (const ACE_TCHAR *ptype)
proactor_type = SUN;
return 1;
#endif /* sun */
-#if !defined (__Lynx__)
+#if !defined (ACE_HAS_BROKEN_SIGEVENT_STRUCT)
case 'C':
proactor_type = CB;
return 1;
-#endif /* __Lynx__ */
+#endif /* !ACE_HAS_BROKEN_SIGEVENT_STRUCT */
default:
break;
}