diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-09 07:10:03 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-09 07:10:03 +0000 |
commit | 9b0486755ef661078d7225a73bf58ecf5fce52c2 (patch) | |
tree | c7068c45cba52cc292e217d18ce466805a70d77b /ace/Asynch_IO.cpp | |
parent | 29b0505c3a342e927a00207ec1e90313149c6db1 (diff) | |
download | ATCD-9b0486755ef661078d7225a73bf58ecf5fce52c2.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Asynch_IO.cpp')
-rw-r--r-- | ace/Asynch_IO.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/ace/Asynch_IO.cpp b/ace/Asynch_IO.cpp index 2a9f545e497..3d0287db1ea 100644 --- a/ace/Asynch_IO.cpp +++ b/ace/Asynch_IO.cpp @@ -18,9 +18,6 @@ ACE_RCSID(ace, Asynch_IO, "$Id$") #include "ace/Asynch_IO.i" #endif /* __ACE_INLINE__ */ - - - ACE_Asynch_Result::ACE_Asynch_Result (ACE_Handler &handler, const void* act, ACE_HANDLE event, @@ -840,9 +837,9 @@ ACE_Asynch_Accept_Handler::register_accept_call (ACE_Asynch_Accept::Result* resu { ACE_DEBUG ((LM_DEBUG, "ACE_Asynch_Accept_Handler::register_accept_call called\n")); - // The queue is updated by main thread in the register function call and - // thru the auxillary thread in the deregister fun. So let us mutex - // it. + // The queue is updated by main thread in the register function call + // and thru the auxillary thread in the deregister fun. So let us + // mutex it. ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1); // Insert this result to the queue. @@ -882,8 +879,7 @@ ACE_Asynch_Accept_Handler::deregister_accept_call (void) ACE_ASSERT (result != 0); - // Disable the <handle> in the reactor if no <accept>'s are - // pending. + // Disable the <handle> in the reactor if no <accept>'s are pending. if (this->result_queue_.size () == 0) { int return_val = this->reactor_->suspend_handler (result->listen_handle ()); |