]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
signal.2: ffix
authorMichael Kerrisk <mtk.manpages@gmail.com>
Wed, 10 Jun 2020 09:55:22 +0000 (11:55 +0200)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Wed, 10 Jun 2020 09:55:59 +0000 (11:55 +0200)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man2/signal.2

index 3d79a5ae3368d72fc6afbcfc95589ced1a6de3b2..c79349918cf8ac0a0ebbd4fa2095f1a38fc71e95 100644 (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