summaryrefslogtreecommitdiff
path: root/ACE/ace/Sig_Handler.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-07-02 09:42:02 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-07-02 09:42:02 +0000
commit2eb1ed0f4fa5639153bc4eeea25553156cc36fef (patch)
treef3496a35a10dbeb3375815edce9737dffba5ab40 /ACE/ace/Sig_Handler.h
parent2262707096964d8847b8d94dd70f6d14e6329dd6 (diff)
downloadATCD-2eb1ed0f4fa5639153bc4eeea25553156cc36fef.tar.gz
Mon Jul 2 09:40:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Sig_Handler.h')
-rw-r--r--ACE/ace/Sig_Handler.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Sig_Handler.h b/ACE/ace/Sig_Handler.h
index 44360301087..6ea7218e941 100644
--- a/ACE/ace/Sig_Handler.h
+++ b/ACE/ace/Sig_Handler.h
@@ -35,9 +35,9 @@ class ACE_Sig_Action;
* global/static variables and functions.
*
* Using this class a program can register an ACE_Event_Handler
- * with the <ACE_Sig_Handler> in order to handle a designated
+ * with the ACE_Sig_Handler in order to handle a designated
* @a signum. When a signal occurs that corresponds to this
- * @a signum, the <handle_signal> method of the registered
+ * @a signum, the @c handle_signal method of the registered
* ACE_Event_Handler is invoked automatically.
*/
class ACE_Export ACE_Sig_Handler
@@ -62,7 +62,7 @@ public:
/**
* Remove the ACE_Event_Handler currently associated with
- * @a signum. <sigkey> is ignored in this implementation since there
+ * @a signum. @a sigkey is ignored in this implementation since there
* is only one instance of a signal handler. Install the new
* disposition (if given) and return the previous disposition (if
* desired by the caller). Returns 0 on success and -1 if @a signum
@@ -117,8 +117,8 @@ protected:
/**
* This implementation method is called by <register_handler> and
- * <dispatch>. It doesn't do any locking so that it can be called
- * within a signal handler, such as <dispatch>. It adds a new
+ * @c dispatch. It doesn't do any locking so that it can be called
+ * within a signal handler, such as @c dispatch. It adds a new
* ACE_Event_Handler and a new sigaction associated with @a signum.
* Passes back the existing ACE_Event_Handler and its sigaction if
* pointers are non-zero. Returns -1 on failure and >= 0 on