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 system call installs a new signal handler for the signal with number
.IR signum . .IR signum .
The signal handler is set to The signal handler is set to
.I sighandler .I handler
which may be a user specified function, or either which may be a user specified function, or either
.B SIG_IGN .B SIG_IGN
or or
@ -58,11 +58,11 @@ then the default action associated with the signal (see
.BR signal (7)) .BR signal (7))
occurs. occurs.
Finally, if the handler is set to a function Finally, if the handler is set to a function
.I sighandler .I handler
then first either the handler is reset to SIG_DFL then first either the handler is reset to SIG_DFL
or an implementation-dependent blocking of the signal or an implementation-dependent blocking of the signal
is performed and next is performed, and then
.I sighandler .I handler
is called with argument is called with argument
.IR signum . .IR signum .