]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
clone.2, io_submit.2, select.2, shmget.2, getcontext.3, malloc_info.3, mtrace.3,...
authorMichael Kerrisk <mtk.manpages@gmail.com>
Tue, 29 Sep 2020 12:24:12 +0000 (14:24 +0200)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Tue, 29 Sep 2020 12:24:12 +0000 (14:24 +0200)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man2/clone.2
man2/io_submit.2
man2/select.2
man2/shmget.2
man3/getcontext.3
man3/malloc_info.3
man3/mtrace.3
man3/posix_spawn.3
man3/strfromd.3
man5/proc.5

index fa5dc73944d0510fca28683b367f4e94bbb807ab..74a0550e774f11d73ede7f866c1603bbe1a4199a 100644 (file)
@@ -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 */"
index bc7101e82b500e8a0f1fa865e23026c2948bd71d..7fbc9d7aec8e9be4fde358c8db1fc1bc5ba12a56 100644 (file)
@@ -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,
index e27c41cee7499bf28a5d5326cdd0843d74bef995..d25760a7d54184e3f7b6c87090e32ad79efd5419 100644 (file)
@@ -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 */
index b58dc07fb096891a3de9992eaaa729d09e0c1a75..4f58c8a4f124181b5d6e4f6e83811ba94cbd2ebd 100644 (file)
@@ -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)
index 141b6e98a871d5b914db48025e5a6987be5a23d1..c52335739d59bf0005bfb7dfa3e9f56fcd559326 100644 (file)
@@ -55,7 +55,7 @@ The
 type is a structure that has at least
 the following fields:
 .PP
-.in +4
+.in +4n
 .EX
 typedef struct ucontext_t {
     struct ucontext_t *uc_link;
index 2a03cf4f1934e6f6a5788a61e63cddbc41ac1465..8a627fb396b35611b7eab731501e674d39a8f250 100644 (file)
@@ -121,7 +121,7 @@ After the blocks of memory have been allocated,
 .BR malloc_info ()
 shows the state of two allocation arenas.
 .PP
-.in +4
+.in +4n
 .EX
 .RB "$ " "getconf GNU_LIBC_VERSION"
 glibc 2.13
index 353cfd96ab7d0125e1cd14285720b46d6042ca22..2753742ec3c28652ddebc7f9122b594bbf471e82 100644 (file)
@@ -135,7 +135,7 @@ function and the
 command in a program that has memory leaks at two different locations.
 The demonstration uses the following program:
 .PP
-.in +4
+.in +4n
 .EX
 .RB "$ " "cat t_mtrace.c"
 #include <mcheck.h>
index 9bc0d34d18cda8351fd8230541451e6697c4db60..694b25fba829d4712e4dde1dbf367daaedbf53f1 100644 (file)
@@ -613,7 +613,7 @@ command is executed in the child, and the
 .BR posix_spawn ()
 call employs no file actions or attributes objects.
 .PP
-.in +4
+.in +4n
 .EX
 $ \fB./a.out date\fP
 PID of child: 7634
@@ -630,7 +630,7 @@ Consequently,
 .BR date (1)
 fails when trying to perform output and exits with a status of 1.
 .PP
-.in +4
+.in +4n
 .EX
 $ \fB./a.out \-c date\fP
 PID of child: 7636
@@ -654,7 +654,7 @@ is necessary
 .RB ( SIGKILL
 can't be blocked).
 .PP
-.in +4
+.in +4n
 .EX
 $ \fB./a.out \-s sleep 60 &\fP
 [1] 7637
@@ -671,7 +671,7 @@ When we try to execute a nonexistent command in the child, the
 .BR exec (3)
 fails and the child exits with a status of 127.
 .PP
-.in +4
+.in +4n
 .EX
 $ \fB./a.out xxxxx
 PID of child: 10190
index 56c85dd73db343f90f1cc04012437399a4ce2eed..c1cc700ba95af5391d25fd558111c04477c9a5a3 100644 (file)
@@ -210,7 +210,7 @@ category of the current locale.
 To convert the value 12.1 as a float type to a string using decimal
 notation, resulting in "12.100000":
 .PP
-.in +4
+.in +4n
 .EX
 #define __STDC_WANT_IEC_60559_BFP_EXT__
 #include <stdlib.h>
@@ -223,7 +223,7 @@ strfromf(s, ssize, "%f", 12.1);
 To convert the value 12.3456 as a float type to a string using
 decimal notation with two digits of precision, resulting in "12.35":
 .PP
-.in +4
+.in +4n
 .EX
 #define __STDC_WANT_IEC_60559_BFP_EXT__
 #include <stdlib.h>
@@ -236,7 +236,7 @@ strfromf(s, ssize, "%.2f", 12.3456);
 To convert the value 12.345e19 as a double type to a string using
 scientific notation with zero digits of precision, resulting in "1E+20":
 .PP
-.in +4
+.in +4n
 .EX
 #define __STDC_WANT_IEC_60559_BFP_EXT__
 #include <stdlib.h>
index 649caa539d20ded231bb4799696352ac1de25b64..96ed39525d018aff72a5a89898a6652a25a7ee6b 100644 (file)
@@ -1311,7 +1311,7 @@ The
 .I perms
 field is a set of permissions:
 .IP
-.in +4
+.in +4n
 .EX
 r = read
 w = write
@@ -3883,7 +3883,7 @@ Inter\-|   Receive                                                |  Transmit
 Defined in
 .IR /usr/src/linux/net/core/dev_mcast.c :
 .IP
-.in +4
+.in +4n
 .EX
 indx interface_name  dmi_u dmi_g dmi_address
 2    eth0            1     0     01005e000001