From f92123948644ee17f037b5121780187550b8c0f5 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Wed, 27 Dec 2006 03:54:12 +0000 Subject: [PATCH] Fix incorrect argument name in DESCRIPTION. Small wording improvement. --- man2/signal.2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/man2/signal.2 b/man2/signal.2 index 503183ac3..6b915dea9 100644 --- a/man2/signal.2 +++ b/man2/signal.2 @@ -40,7 +40,7 @@ The system call installs a new signal handler for the signal with number .IR signum . The signal handler is set to -.I sighandler +.I handler which may be a user specified function, or either .B SIG_IGN or @@ -58,11 +58,11 @@ then the default action associated with the signal (see .BR signal (7)) occurs. Finally, if the handler is set to a function -.I sighandler +.I handler then first either the handler is reset to SIG_DFL or an implementation-dependent blocking of the signal -is performed and next -.I sighandler +is performed, and then +.I handler is called with argument .IR signum .