summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-10-23 14:43:10 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-10-23 14:43:10 +0200
commit279753acc2f06be7c5cea2f7b69441d9efc0a52d (patch)
tree9d93ed53700b148783eea0389a8d523f4398c550
parent8d65848aff96639f4149b18213511776f084f4af (diff)
downloadATCD-279753acc2f06be7c5cea2f7b69441d9efc0a52d.tar.gz
Fixed comments
* ACE/ace/Sig_Handler.cpp:
-rw-r--r--ACE/ace/Sig_Handler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Sig_Handler.cpp b/ACE/ace/Sig_Handler.cpp
index ba47c979b92..3fb63c52ffc 100644
--- a/ACE/ace/Sig_Handler.cpp
+++ b/ACE/ace/Sig_Handler.cpp
@@ -146,12 +146,12 @@ ACE_Sig_Handler::register_handler_i (int signum,
ACE_Sig_Action sa; // Define a "null" action.
ACE_Event_Handler *sh = ACE_Sig_Handler::handler_i (signum, new_sh);
- // Return a pointer to the old <ACE_Sig_Handler> if the user
+ // Return a pointer to the old ACE_Event_Handler if the user
// asks for this.
if (old_sh != 0)
*old_sh = sh;
- // Make sure that <new_disp> points to a valid location if the
+ // Make sure that @a new_disp points to a valid location if the
// user doesn't care...
if (new_disp == 0)
new_disp = &sa;