diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-01 05:33:47 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-01 05:33:47 +0000 |
commit | f1f5cf7d97d95a704a0b9d3eb2270daf53b0c541 (patch) | |
tree | 1d8f2807169c8d5f622c05535e17577b26e6aa45 /ace/Asynch_IO.cpp | |
parent | 16ec80c4d8af38738db17483e74831441aa7d546 (diff) | |
download | ATCD-f1f5cf7d97d95a704a0b9d3eb2270daf53b0c541.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Asynch_IO.cpp')
-rw-r--r-- | ace/Asynch_IO.cpp | 39 |
1 files changed, 15 insertions, 24 deletions
diff --git a/ace/Asynch_IO.cpp b/ace/Asynch_IO.cpp index 94d9d939458..35c1ccba6d2 100644 --- a/ace/Asynch_IO.cpp +++ b/ace/Asynch_IO.cpp @@ -157,17 +157,11 @@ ACE_Asynch_Read_Stream::read (ACE_Message_Block &message_block, this->proactor_->get_handle ()), -1); - return this->shared_read (result, - message_block, - bytes_to_read, - act); + return this->shared_read (result); } int -ACE_Asynch_Read_Stream::shared_read (ACE_Asynch_Read_Stream::Result *result, - ACE_Message_Block &message_block, - u_long bytes_to_read, - const void *act) +ACE_Asynch_Read_Stream::shared_read (ACE_Asynch_Read_Stream::Result *result) { u_long bytes_read; @@ -274,17 +268,11 @@ ACE_Asynch_Write_Stream::write (ACE_Message_Block &message_block, this->proactor_->get_handle ()), -1); - return this->shared_write (result, - message_block, - bytes_to_write, - act); + return this->shared_write (result); } int -ACE_Asynch_Write_Stream::shared_write (ACE_Asynch_Write_Stream::Result *result, - ACE_Message_Block &message_block, - u_long bytes_to_write, - const void *act) +ACE_Asynch_Write_Stream::shared_write (ACE_Asynch_Write_Stream::Result *result) { u_long bytes_written; @@ -391,10 +379,7 @@ ACE_Asynch_Read_File::read (ACE_Message_Block &message_block, this->proactor_->get_handle ()), -1); - return this->shared_read (result, - message_block, - bytes_to_read, - act); + return this->shared_read (result); } // ************************************************************ @@ -453,10 +438,7 @@ ACE_Asynch_Write_File::write (ACE_Message_Block &message_block, this->proactor_->get_handle ()), -1); - return this->shared_write (result, - message_block, - bytes_to_write, - act); + return this->shared_write (result); } // ************************************************************ @@ -936,37 +918,44 @@ ACE_Handler::ACE_Handler (ACE_Proactor *d) void ACE_Handler::handle_read_stream (const ACE_Asynch_Read_Stream::Result &result) { + ACE_UNUSED_ARG (result); } void ACE_Handler::handle_write_stream (const ACE_Asynch_Write_Stream::Result &result) { + ACE_UNUSED_ARG (result); } void ACE_Handler::handle_accept (const ACE_Asynch_Accept::Result &result) { + ACE_UNUSED_ARG (result); } void ACE_Handler::handle_transmit_file (const ACE_Asynch_Transmit_File::Result &result) { + ACE_UNUSED_ARG (result); } void ACE_Handler::handle_read_file (const ACE_Asynch_Read_File::Result &result) { + ACE_UNUSED_ARG (result); } void ACE_Handler::handle_write_file (const ACE_Asynch_Write_File::Result &result) { + ACE_UNUSED_ARG (result); } /* void ACE_Handler::handle_notify (const ACE_Asynch_Notify::Result &result) { + ACE_UNUSED_ARG (result); } */ @@ -974,6 +963,8 @@ void ACE_Handler::handle_time_out (const ACE_Time_Value &tv, const void *act) { + ACE_UNUSED_ARG (tv); + ACE_UNUSED_ARG (act); } ACE_Proactor * |