Fix incorrect argument name in DESCRIPTION.

Small wording improvement.
This commit is contained in:
Michael Kerrisk 2006-12-27 03:54:12 +00:00
parent 5d693709d0
commit f921239486
1 changed files with 4 additions and 4 deletions

View File

@ -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 .