aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2025-07-18 14:29:25 +0200
committerAlejandro Colomar <alx@kernel.org>2025-07-19 23:29:25 +0200
commit05bca153388752c4e286a24ea29f67db2987f76c (patch)
tree51a3ce98d5e445e623a87a4914be981e75a7a951
parent483c9498dd5bf9056e7a84c46f2b1ff962e6d814 (diff)
downloadman-pages-05bca153388752c4e286a24ea29f67db2987f76c.tar.gz
man/man2/clone.2: Move ia64 to HISTORY
Reported-by: Elliott Hughes <enh@google.com> Cc: Carlos O'Donell <carlos@redhat.com> Cc: Eugene Syromyatnikov <evgsyr@gmail.com> Cc: Walter Harms <wharms@bfs.de> Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--man/man2/clone.260
1 files changed, 30 insertions, 30 deletions
diff --git a/man/man2/clone.2 b/man/man2/clone.2
index 0ae4a1aaef..16d9f7f913 100644
--- a/man/man2/clone.2
+++ b/man/man2/clone.2
@@ -1644,6 +1644,36 @@ an additional argument is supplied:
The argument-passing conventions on
blackfin, m68k, and sparc are different from the descriptions above.
For details, see the kernel (and glibc) source.
+.SH STANDARDS
+Linux.
+.SH HISTORY
+.TP
+.BR clone3 ()
+Linux 5.3.
+.\" There is no entry for
+.\" .BR clone ()
+.\" in libc5.
+.\" glibc2 provides
+.\" .BR clone ()
+.\" as described in this manual page.
+.SS Linux 2.4 and earlier
+In the Linux 2.4.x series,
+.B CLONE_THREAD
+generally does not make the parent of the new thread the same
+as the parent of the calling process.
+However, from Linux 2.4.7 to Linux 2.4.18 the
+.B CLONE_THREAD
+flag implied the
+.B CLONE_PARENT
+flag (as in Linux 2.6.0 and later).
+.P
+In Linux 2.4 and earlier,
+.BR clone ()
+does not take arguments
+.IR parent_tid ,
+.IR tls ,
+and
+.IR child_tid .
.SS ia64
On ia64, a different interface is used:
.P
@@ -1682,36 +1712,6 @@ and
.I stack_size
specifies the size of the stack pointed to by
.IR stack_base .
-.SH STANDARDS
-Linux.
-.SH HISTORY
-.TP
-.BR clone3 ()
-Linux 5.3.
-.\" There is no entry for
-.\" .BR clone ()
-.\" in libc5.
-.\" glibc2 provides
-.\" .BR clone ()
-.\" as described in this manual page.
-.SS Linux 2.4 and earlier
-In the Linux 2.4.x series,
-.B CLONE_THREAD
-generally does not make the parent of the new thread the same
-as the parent of the calling process.
-However, from Linux 2.4.7 to Linux 2.4.18 the
-.B CLONE_THREAD
-flag implied the
-.B CLONE_PARENT
-flag (as in Linux 2.6.0 and later).
-.P
-In Linux 2.4 and earlier,
-.BR clone ()
-does not take arguments
-.IR parent_tid ,
-.IR tls ,
-and
-.IR child_tid .
.SH NOTES
One use of these system calls
is to implement threads: multiple flows of control in a program that