summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-09-22 22:20:15 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-09-22 22:20:15 +0000
commit65c8aab1082ca9ded5313de39e9dcc08cdba59dc (patch)
tree07928bc2d40f2621bb264f2a1d51468d1c751659
parenta60c6077f77e7a2ddf843166b3e5bd8efda80c96 (diff)
downloadATCD-65c8aab1082ca9ded5313de39e9dcc08cdba59dc.tar.gz
ChangeLogTag:Sat Sep 22 08:59:24 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
-rw-r--r--ace/Event_Handler.h6
-rw-r--r--ace/Reactor.h10
-rw-r--r--ace/Select_Reactor.h3
-rw-r--r--ace/Timer_Queue_T.h8
4 files changed, 14 insertions, 13 deletions
diff --git a/ace/Event_Handler.h b/ace/Event_Handler.h
index deb3f951b09..81c9a6006dd 100644
--- a/ace/Event_Handler.h
+++ b/ace/Event_Handler.h
@@ -96,11 +96,11 @@ public:
/// Called when input events occur (e.g., connection or data).
virtual int handle_input (ACE_HANDLE fd = ACE_INVALID_HANDLE);
- /// Called when output events are possible (e.g., flow control
- /// abates).
+ /// Called when output events are possible (e.g., when flow control
+ /// abates or non-blocking connection completes).
virtual int handle_output (ACE_HANDLE fd = ACE_INVALID_HANDLE);
- /// Called when execption events occur (e.g., SIGURG).
+ /// Called when an exceptional events occur (e.g., SIGURG).
virtual int handle_exception (ACE_HANDLE fd = ACE_INVALID_HANDLE);
/**
diff --git a/ace/Reactor.h b/ace/Reactor.h
index ce9afcc66a5..92c5b965473 100644
--- a/ace/Reactor.h
+++ b/ace/Reactor.h
@@ -6,7 +6,8 @@
*
* $Id$
*
- * @author Irfan Pyarali
+ * @author Irfan Pyarali <irfan@cs.wustl.edu>
+ * @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//=============================================================================
@@ -151,7 +152,7 @@ public:
/**
* Run the event loop until the
* <ACE_Reactor::handle_events/ACE_Reactor::alertable_handle_events>
- * method returns -1 or the <end_event_loop> method is invoked.
+ * method returns -1 or the <end_reactor_event_loop> method is invoked.
*/
virtual int run_reactor_event_loop (REACTOR_EVENT_HOOK = 0);
virtual int run_alertable_reactor_event_loop (REACTOR_EVENT_HOOK = 0);
@@ -159,7 +160,7 @@ public:
/**
* Run the event loop until the <ACE_Reactor::handle_events> or
* <ACE_Reactor::alertable_handle_events> methods returns -1, the
- * <end_event_loop> method is invoked, or the <ACE_Time_Value>
+ * <end_reactor_event_loop> method is invoked, or the <ACE_Time_Value>
* expires.
*/
virtual int run_reactor_event_loop (ACE_Time_Value &tv,
@@ -174,7 +175,8 @@ public:
*/
virtual int end_reactor_event_loop (void);
- /// Report if the <ACE_Reactor::instance>'s event loop is finished.
+ /// Indicate if the <ACE_Reactor::instance>'s event loop has been
+ /// ended.
virtual int reactor_event_loop_done (void);
/// Resets the <ACE_Reactor::end_event_loop_> static so that the
diff --git a/ace/Select_Reactor.h b/ace/Select_Reactor.h
index 6e503bd51bc..ab94d6c7f40 100644
--- a/ace/Select_Reactor.h
+++ b/ace/Select_Reactor.h
@@ -6,11 +6,10 @@
*
* $Id$
*
- * @author Doug Schmidt
+ * @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//=============================================================================
-
#ifndef ACE_SELECT_REACTOR_H
#define ACE_SELECT_REACTOR_H
#include "ace/pre.h"
diff --git a/ace/Timer_Queue_T.h b/ace/Timer_Queue_T.h
index 9e933b7171a..55735ace482 100644
--- a/ace/Timer_Queue_T.h
+++ b/ace/Timer_Queue_T.h
@@ -6,9 +6,9 @@
*
* $Id$
*
- * @author Doug Schmid <schmidt@cs.wustl.edu>
- * @author Irfan Pyarali <irfan@cs.wustl.edu>
- * @author and Darrell Brunsch <brunsch@cs.wustl.edu>
+ * @author Doug Schmidt <schmidt@cs.wustl.edu>
+ * @author Irfan Pyarali <irfan@cs.wustl.edu> and
+ * @author Darrell Brunsch <brunsch@cs.wustl.edu>
*/
//=============================================================================
@@ -335,7 +335,7 @@ public:
/* virtual */ int expire (void);
/**
- * Returns the current time of day. This allows different
+ * Returns the current time of day. This method allows different
* implementations of the timer queue to use special high resolution
* timers.
*/