sigvec.3: grfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2012-09-06 08:55:22 +02:00
parent bb890443c8
commit 1bea464c1f
1 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ for programs that make use of the historical BSD signal API.
This API is obsolete: new applications should use the POSIX signal API
.RB ( sigaction (2),
.BR sigprocmask (2),
etc.)
etc.).
The
.BR sigvec ()
@ -100,10 +100,10 @@ struct sigvec {
The
.I sv_handler
field specifies the disposition of the signal, and is either:
the address of a signal handler function; or
.B SIG_DFL
the address of a signal handler function;
.BR SIG_DFL ,
meaning the default disposition applies for the signal; or
.B SIG_IGN
.BR SIG_IGN ,
meaning that the signal is ignored.
If