diff options
author | alex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-14 20:35:09 +0000 |
---|---|---|
committer | alex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-14 20:35:09 +0000 |
commit | 0f2e936b1882b6ef0308ac0555560a9d9c3fa676 (patch) | |
tree | c6d70b82c67b44fa1027cec516589cc017600aa7 /ace/POSIX_Asynch_IO.cpp | |
parent | 6746cc3ace103a3370092b63863f0b8b2cf11b73 (diff) | |
download | ATCD-0f2e936b1882b6ef0308ac0555560a9d9c3fa676.tar.gz |
Removed debug print statments.
Diffstat (limited to 'ace/POSIX_Asynch_IO.cpp')
-rw-r--r-- | ace/POSIX_Asynch_IO.cpp | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/ace/POSIX_Asynch_IO.cpp b/ace/POSIX_Asynch_IO.cpp index 4b97b3a9323..f789eb9cdec 100644 --- a/ace/POSIX_Asynch_IO.cpp +++ b/ace/POSIX_Asynch_IO.cpp @@ -2261,8 +2261,6 @@ ACE_POSIX_SIG_Asynch_Accept::~ACE_POSIX_SIG_Asynch_Accept (void) void* ACE_POSIX_SIG_Asynch_Accept::thread_function (void* arg_reactor) { - ACE_DEBUG ((LM_DEBUG, "ACE_Asynch_Accept::thread_function called\n")); - // Retrieve the reactor pointer from the argument. ACE_Reactor* reactor = (ACE_Reactor *) arg_reactor; if (reactor == 0) @@ -2271,18 +2269,11 @@ ACE_POSIX_SIG_Asynch_Accept::thread_function (void* arg_reactor) // For this reactor, this thread is the owner. reactor->owner (ACE_OS::thr_self ()); - // Handle events. + // Handle events. Wait for any connection events. int result = 0; while (result != -1) - { - result = reactor->handle_events (); - ACE_DEBUG ((LM_DEBUG, - "ACE_Asynch_Accept::Thread_Function : handle_events : result = [%d]\n", - result)); - } - - ACE_DEBUG ((LM_DEBUG, "Exiting ACE_Asynch_Accept::thread_function \n")); - + result = reactor->handle_events (); + return 0; } |