summaryrefslogtreecommitdiff
path: root/ACE/tests/Proactor_Test_IPV6.cpp
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2007-01-06 00:13:33 +0000
committerSteve Huston <shuston@riverace.com>2007-01-06 00:13:33 +0000
commita3b7dea69399648c2a7a0153044a4a0ab10109f4 (patch)
tree0d4aa36885e171bacce4f30edfea290e5fbd8140 /ACE/tests/Proactor_Test_IPV6.cpp
parent2bb628ef1397bc2ff4c26817bb71c338214c35ed (diff)
downloadATCD-a3b7dea69399648c2a7a0153044a4a0ab10109f4.tar.gz
ChangeLogTag:Sat Jan 6 00:06:52 UTC 2007 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ACE/tests/Proactor_Test_IPV6.cpp')
-rw-r--r--ACE/tests/Proactor_Test_IPV6.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/tests/Proactor_Test_IPV6.cpp b/ACE/tests/Proactor_Test_IPV6.cpp
index 7ac9443d0ae..003f6915612 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_WIN32) && !defined (ACE_HAS_WINCE)) || (defined (ACE_HAS_AIO_CALLS)))
+#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.
@@ -50,7 +50,7 @@ ACE_RCSID (tests,
#include "ace/Atomic_Op.h"
#include "ace/Synch_Traits.h"
-#if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)
+#if defined (ACE_HAS_WIN32_OVERLAPPED_IO)
# include "ace/WIN32_Proactor.h"
@@ -60,7 +60,7 @@ ACE_RCSID (tests,
# include "ace/POSIX_CB_Proactor.h"
# include "ace/SUN_Proactor.h"
-#endif /* defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) */
+#endif /* defined (ACE_HAS_WIN32_OVERLAPPED_IO) */
#include "Proactor_Test.h"
@@ -1678,7 +1678,7 @@ Client::handle_read_stream (const ACE_Asynch_Read_Stream::Result &result)
ACE_TEXT ("error"),
result.error ()));
-#if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE))
+#if defined (ACE_WIN32)
char index = 0;
for (ACE_Message_Block* mb_i = &mb;
mb_i != 0;
@@ -1694,14 +1694,14 @@ Client::handle_read_stream (const ACE_Asynch_Read_Stream::Result &result)
index,
mb_i->rd_ptr ()));
}
-#else /* (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) */
+#else /* ACE_WIN32 */
// write 0 at string end for proper printout
mb.rd_ptr()[result.bytes_transferred ()] = '\0'; // for proper printout
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("%s = %s\n"),
ACE_TEXT ("message_block"),
mb.rd_ptr ()));
-#endif /* (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) */
+#endif /* ACE_WIN32 */
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("**** end of message ****************\n")));
@@ -1981,4 +1981,4 @@ run_main (int, ACE_TCHAR *[])
return 0;
}
-#endif /* ACE_WIN32 && !ACE_HAS_WINCE || ACE_HAS_AIO_CALLS */
+#endif /* ACE_HAS_WIN32_OVERLAPPED_IO || ACE_HAS_AIO_CALLS */