summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-15 21:12:05 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-15 21:12:05 +0000
commit9367272144162d626ce203755c40a3cd297365c9 (patch)
tree30278968417ea891ba01f33e2aa53dd9b7e9b810
parentaf4c0b64a2a0160215b4693d17315210507a454a (diff)
downloadATCD-9367272144162d626ce203755c40a3cd297365c9.tar.gz
(main): changed type of i from int to size_t to avoid signed/unsigned comparison
-rw-r--r--tests/Reactor_Exceptions_Test.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/Reactor_Exceptions_Test.cpp b/tests/Reactor_Exceptions_Test.cpp
index ae13624c212..846f0392743 100644
--- a/tests/Reactor_Exceptions_Test.cpp
+++ b/tests/Reactor_Exceptions_Test.cpp
@@ -4,7 +4,7 @@
//
// = LIBRARY
// tests
-//
+//
// = FILENAME
// Reactor_Exceptions_Test.cpp
//
@@ -14,7 +14,7 @@
//
// = AUTHOR
// Luca Priorelli <lucapri@mbox.vol.it> and Douglas C. Schmidt
-//
+//
// ============================================================================
#include "ace/Reactor.h"
@@ -54,7 +54,7 @@ MemoryEx::handle_input (ACE_HANDLE)
ACE_INET_Addr from_addr;
ACE_DEBUG ((LM_DEBUG, "Activity occurred on handle %d!\n",
- ACE_SOCK_Dgram::get_handle ()));
+ ACE_SOCK_Dgram::get_handle ()));
ssize_t n = ACE_SOCK_Dgram::recv (buf, sizeof buf, from_addr);
@@ -109,7 +109,7 @@ worker (void)
}
#endif /* ACE_HAS_EXCEPTIONS */
-int
+int
main (int argc, char *argv[])
{
ACE_START_TEST ("Reactor_Exceptions_Test");
@@ -125,10 +125,10 @@ main (int argc, char *argv[])
ACE_INET_Addr local_addr (port);
ACE_INET_Addr remote_addr (port,
- ACE_DEFAULT_SERVER_HOST);
+ ACE_DEFAULT_SERVER_HOST);
MemoryEx ex (local_addr);
- if (ACE_Reactor::instance ()->register_handler
+ if (ACE_Reactor::instance ()->register_handler
(&ex, ACE_Event_Handler::READ_MASK) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n%a", "register_handler", 1), -1);
@@ -136,12 +136,12 @@ main (int argc, char *argv[])
thr_mgr->spawn (ACE_THR_FUNC (worker));
#else
// Need to figure out how to implement this test.
- ACE_ERROR ((LM_ERROR, "threads not supported on this platform\n"));
+ ACE_ERROR ((LM_ERROR, "threads not supported on this platform\n"));
#endif /* ACE_HAS_THREADS */
ACE_SOCK_Dgram dgram ((ACE_INET_Addr &) ACE_Addr::sap_any);
- for (int i = 0; i < ACE_MAX_ITERATIONS; i++)
+ for (size_t i = 0; i < ACE_MAX_ITERATIONS; i++)
dgram.send ("Hello", 6, remote_addr);
thr_mgr->wait ();