summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-10-23 12:40:36 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-10-23 12:40:36 +0000
commite16daeea923a7f3293bd4dc33aaba6bb9a77676c (patch)
tree96d4bfb0885894fe13bb5fcaca6d2ef78853dc12
parentddcb768224dab1981dc3ca3b3d64f5f641f8290b (diff)
downloadATCD-e16daeea923a7f3293bd4dc33aaba6bb9a77676c.tar.gz
-rw-r--r--ACE/ace/Event_Handler.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/ACE/ace/Event_Handler.h b/ACE/ace/Event_Handler.h
index 9ad36307bf1..73cd4cd9a33 100644
--- a/ACE/ace/Event_Handler.h
+++ b/ACE/ace/Event_Handler.h
@@ -125,10 +125,10 @@ public:
/// Called when a process exits.
virtual int handle_exit (ACE_Process *);
- /// Called when a <handle_*()> method returns -1 or when the
- /// <remove_handler> method is called on an ACE_Reactor. The
+ /// Called when a handle_*() method returns -1 or when the
+ /// remove_handler() method is called on an ACE_Reactor. The
/// @a close_mask indicates which event has triggered the
- /// <handle_close> method callback on a particular @a handle.
+ /// handle_close() method callback on a particular @a handle.
virtual int handle_close (ACE_HANDLE handle,
ACE_Reactor_Mask close_mask);
@@ -146,13 +146,14 @@ public:
/// The application takes responsibility of resuming the handler
ACE_APPLICATION_RESUMES_HANDLER
};
+
/**
* Called to figure out whether the handler needs to resumed by the
* reactor or the application can take care of it. The default
* value of 0 would be returned which would allow the reactor to
* take care of resumption of the handler. The application can
* return a value more than zero and decide to resume the handler
- * themseleves.
+ * themselves.
*
* @note This method has an affect only when used with the
* ACE_Dev_Poll_Reactor (and then, only on Linux) or the ACE_TP_Reactor.