sigvec.3: Fix error in code snippet

s/sigpause/sigmask/

Reported-by: Kalle Olavi Niemitalo <kon@iki.fi>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2014-02-12 09:16:34 +01:00
parent 3bfe7277f0
commit 7100862185
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ field given to
using code such as the following:
.nf
vec.sv_mask = sigmask(SIGQUIT) | sigpause(SIGABRT);
vec.sv_mask = sigmask(SIGQUIT) | sigmask(SIGABRT);
/* Block SIGQUIT and SIGABRT during
handler execution */
.fi