aboutsummaryrefslogtreecommitdiffstats
path: root/man2
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2020-09-29 14:24:12 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-09-29 14:24:12 +0200
commit161b8eda4d0c94923c59a7f86cf3fae1eeaafdb2 (patch)
tree9dad73554734e9843d8670f561612eba22fefc46 /man2
parentc37e8cfb04f04627867f7cc90f654f7b133f4582 (diff)
downloadman-pages-161b8eda4d0c94923c59a7f86cf3fae1eeaafdb2.tar.gz
clone.2, io_submit.2, select.2, shmget.2, getcontext.3, malloc_info.3, mtrace.3, posix_spawn.3, strfromd.3, proc.5: srcfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man2')
-rw-r--r--man2/clone.212
-rw-r--r--man2/io_submit.22
-rw-r--r--man2/select.22
-rw-r--r--man2/shmget.22
4 files changed, 9 insertions, 9 deletions
diff --git a/man2/clone.2 b/man2/clone.2
index fa5dc73944..74a0550e77 100644
--- a/man2/clone.2
+++ b/man2/clone.2
@@ -1615,7 +1615,7 @@ as detailed in the following paragraphs.
The raw system call interface on x86-64 and some other architectures
(including sh, tile, and alpha) is:
.PP
-.in +4
+.in +4n
.EX
.BI "long clone(unsigned long " flags ", void *" stack ,
.BI " int *" parent_tid ", int *" child_tid ,
@@ -1629,7 +1629,7 @@ and MIPS),
.\" CONFIG_CLONE_BACKWARDS
the order of the last two arguments is reversed:
.PP
-.in +4
+.in +4n
.EX
.BI "long clone(unsigned long " flags ", void *" stack ,
.BI " int *" parent_tid ", unsigned long " tls ,
@@ -1641,7 +1641,7 @@ On the cris and s390 architectures,
.\" CONFIG_CLONE_BACKWARDS2
the order of the first two arguments is reversed:
.PP
-.in +4
+.in +4n
.EX
.BI "long clone(void *" stack ", unsigned long " flags ,
.BI " int *" parent_tid ", int *" child_tid ,
@@ -1653,7 +1653,7 @@ On the microblaze architecture,
.\" CONFIG_CLONE_BACKWARDS3
an additional argument is supplied:
.PP
-.in +4
+.in +4n
.EX
.BI "long clone(unsigned long " flags ", void *" stack ,
.BI " int " stack_size , "\fR /* Size of stack */"
@@ -1672,7 +1672,7 @@ For details, see the kernel (and glibc) source.
.SS ia64
On ia64, a different interface is used:
.PP
-.in +4
+.in +4n
.EX
.BI "int __clone2(int (*" "fn" ")(void *),"
.BI " void *" stack_base ", size_t " stack_size ,
@@ -1688,7 +1688,7 @@ the prototype can be described as follows (it is identical to the
.BR clone ()
prototype on microblaze):
.PP
-.in +4
+.in +4n
.EX
.BI "long clone2(unsigned long " flags ", void *" stack_base ,
.BI " int " stack_size , "\fR /* Size of stack */"
diff --git a/man2/io_submit.2 b/man2/io_submit.2
index bc7101e82b..7fbc9d7aec 100644
--- a/man2/io_submit.2
+++ b/man2/io_submit.2
@@ -136,7 +136,7 @@ The
valid values are defined by the enum defined in
.IR linux/aio_abi.h :
.IP
-.in +4
+.in +4n
.EX
enum {
IOCB_CMD_PREAD = 0,
diff --git a/man2/select.2 b/man2/select.2
index e27c41cee7..d25760a7d5 100644
--- a/man2/select.2
+++ b/man2/select.2
@@ -599,7 +599,7 @@ system call is not a
.I "sigset_t\ *"
pointer, but is instead a structure of the form:
.PP
-.in +4
+.in +4n
.EX
struct {
const kernel_sigset_t *ss; /* Pointer to signal set */
diff --git a/man2/shmget.2 b/man2/shmget.2
index b58dc07fb0..4f58c8a4f1 100644
--- a/man2/shmget.2
+++ b/man2/shmget.2
@@ -133,7 +133,7 @@ the base-2 logarithm of the desired page size in the six bits at the offset
.BR SHM_HUGE_SHIFT .
Thus, the above two constants are defined as:
.IP
-.in +4
+.in +4n
.EX
#define SHM_HUGE_2MB (21 << SHM_HUGE_SHIFT)
#define SHM_HUGE_1GB (30 << SHM_HUGE_SHIFT)