signal.2: ffix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2020-06-10 11:55:22 +02:00
parent da16ac098d
commit 0d0da0de86
1 changed files with 6 additions and 2 deletions

View File

@ -198,9 +198,11 @@ This is equivalent to calling
.BR sigaction (2)
with the following flags:
.PP
.in +4n
.EX
sa.sa_flags = SA_RESETHAND | SA_NODEFER;
sa.sa_flags = SA_RESETHAND | SA_NODEFER;
.EE
.in
.PP
System\ V also provides these semantics for
.BR signal ().
@ -224,9 +226,11 @@ The BSD semantics are equivalent to calling
.BR sigaction (2)
with the following flags:
.PP
.in +4n
.EX
sa.sa_flags = SA_RESTART;
sa.sa_flags = SA_RESTART;
.EE
.in
.PP
The situation on Linux is as follows:
.IP * 2