diff options
Diffstat (limited to 'ace/POSIX_Proactor.cpp')
-rw-r--r-- | ace/POSIX_Proactor.cpp | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/ace/POSIX_Proactor.cpp b/ace/POSIX_Proactor.cpp index 9738b4f1c1a..9a6eb50e940 100644 --- a/ace/POSIX_Proactor.cpp +++ b/ace/POSIX_Proactor.cpp @@ -357,8 +357,6 @@ ACE_POSIX_Proactor::post_wakeup_completions (int how_many) return 0; } -// ********************************************************************* - class ACE_Export ACE_AIOCB_Notify_Pipe_Manager : public ACE_Handler { // = TITLE @@ -913,7 +911,9 @@ ACE_Asynch_Read_Stream_Impl * ACE_POSIX_SIG_Proactor::create_asynch_read_stream (void) { ACE_Asynch_Read_Stream_Impl *implementation = 0; - ACE_NEW_RETURN (implementation, ACE_POSIX_SIG_Asynch_Read_Stream (this), 0); + ACE_NEW_RETURN (implementation, + ACE_POSIX_SIG_Asynch_Read_Stream (this), + 0); return implementation; } @@ -921,7 +921,9 @@ ACE_Asynch_Write_Stream_Impl * ACE_POSIX_SIG_Proactor::create_asynch_write_stream (void) { ACE_Asynch_Write_Stream_Impl *implementation = 0; - ACE_NEW_RETURN (implementation, ACE_POSIX_SIG_Asynch_Write_Stream (this), 0); + ACE_NEW_RETURN (implementation, + ACE_POSIX_SIG_Asynch_Write_Stream (this), + 0); return implementation; } @@ -929,7 +931,9 @@ ACE_Asynch_Read_File_Impl * ACE_POSIX_SIG_Proactor::create_asynch_read_file (void) { ACE_Asynch_Read_File_Impl *implementation = 0; - ACE_NEW_RETURN (implementation, ACE_POSIX_SIG_Asynch_Read_File (this), 0); + ACE_NEW_RETURN (implementation, + ACE_POSIX_SIG_Asynch_Read_File (this), + 0); return implementation; } @@ -937,7 +941,9 @@ ACE_Asynch_Write_File_Impl * ACE_POSIX_SIG_Proactor::create_asynch_write_file (void) { ACE_Asynch_Write_File_Impl *implementation = 0; - ACE_NEW_RETURN (implementation, ACE_POSIX_SIG_Asynch_Write_File (this), 0); + ACE_NEW_RETURN (implementation, + ACE_POSIX_SIG_Asynch_Write_File (this), + 0); return implementation; } @@ -945,7 +951,9 @@ ACE_Asynch_Accept_Impl * ACE_POSIX_SIG_Proactor::create_asynch_accept (void) { ACE_Asynch_Accept_Impl *implementation = 0; - ACE_NEW_RETURN (implementation, ACE_POSIX_SIG_Asynch_Accept (this), 0); + ACE_NEW_RETURN (implementation, + ACE_POSIX_SIG_Asynch_Accept (this), + 0); return implementation; } |