summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-08-05 05:12:25 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-08-05 05:12:25 +0000
commit2ce2b825d87887423c7ebe0ab5595a5bc9834ff5 (patch)
tree0be01b8745b0d8192b2231db894518cf6ca91605
parentf32a29d1a31eb067a96ca4e0b9363b49a75b682d (diff)
downloadATCD-2ce2b825d87887423c7ebe0ab5595a5bc9834ff5.tar.gz
ChangeLogTag:Wed Aug 4 19:46:33 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--TAO/tao/default_resource.h2
-rw-r--r--ace/Asynch_IO.h7
-rw-r--r--ace/Proactor.h17
3 files changed, 12 insertions, 14 deletions
diff --git a/TAO/tao/default_resource.h b/TAO/tao/default_resource.h
index 19e94eb1075..915a4389ccd 100644
--- a/TAO/tao/default_resource.h
+++ b/TAO/tao/default_resource.h
@@ -29,8 +29,6 @@
class TAO_Object_Adapter;
-// ****************************************************************
-
class TAO_Default_Resource_Factory : public TAO_Resource_Factory
{
// = TITLE
diff --git a/ace/Asynch_IO.h b/ace/Asynch_IO.h
index 32b0f921e9e..1732ac78a69 100644
--- a/ace/Asynch_IO.h
+++ b/ace/Asynch_IO.h
@@ -988,20 +988,17 @@ public:
class ACE_Export ACE_Handler
{
// = TITLE
- //
// This base class defines the interface for receiving the
// results of asynchronous operations.
//
// = DESCRIPTION
- //
// Subclasses of this class will fill in appropriate methods.
-
public:
ACE_Handler (void);
// A do nothing constructor.
ACE_Handler (ACE_Proactor *p);
- // A do nothing constructor which allows proactor to be set to <d>.
+ // A do nothing constructor which allows proactor to be set to <p>.
virtual ~ACE_Handler (void);
// Virtual destruction.
@@ -1012,7 +1009,7 @@ public:
virtual void handle_write_stream (const ACE_Asynch_Write_Stream::Result &result);
// This method will be called when an asynchronous write completes
- // on a strea_m.
+ // on a stream.
virtual void handle_read_file (const ACE_Asynch_Read_File::Result &result);
// This method will be called when an asynchronous read completes on
diff --git a/ace/Proactor.h b/ace/Proactor.h
index 7c08bfac14b..859db75cd5e 100644
--- a/ace/Proactor.h
+++ b/ace/Proactor.h
@@ -271,31 +271,34 @@ public:
virtual ACE_Proactor_Impl *implementation (void) const;
// Get the implementation class.
- //
// = Factory methods for the operations
//
// Note that the user does not have to use or know about these
// methods.
virtual ACE_Asynch_Read_Stream_Impl *create_asynch_read_stream (void);
- // Create the correct implementation class for doing Asynch_Read_Stream.
+ // Create the correct implementation class for doing
+ // Asynch_Read_Stream.
virtual ACE_Asynch_Write_Stream_Impl *create_asynch_write_stream (void);
- // Create the correct implementation class for doing Asynch_Write_Stream.
+ // Create the correct implementation class for doing
+ // Asynch_Write_Stream.
virtual ACE_Asynch_Read_File_Impl *create_asynch_read_file (void);
- // Create the correct implementation class for doing Asynch_Read_File.
+ // Create the correct implementation class for doing
+ // Asynch_Read_File.
virtual ACE_Asynch_Write_File_Impl *create_asynch_write_file (void);
- // Create the correct implementation class for doing Asynch_Write_File.
+ // Create the correct implementation class for doing
+ // Asynch_Write_File.
virtual ACE_Asynch_Accept_Impl *create_asynch_accept (void);
// Create the correct implementation class for doing Asynch_Accept.
virtual ACE_Asynch_Transmit_File_Impl *create_asynch_transmit_file (void);
- // Create the correct implementation class for doing Asynch_Transmit_File.
+ // Create the correct implementation class for doing
+ // Asynch_Transmit_File.
- //
// = Factory methods for the results
//
// Note that the user does not have to use or know about these