]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
man/man3/_Fork.3: Document _Fork()
authorAlejandro Colomar <alx@kernel.org>
Sat, 17 May 2025 12:09:14 +0000 (14:09 +0200)
committerAlejandro Colomar <alx@kernel.org>
Sun, 27 Jul 2025 11:12:04 +0000 (13:12 +0200)
Signed-off-by: Alejandro Colomar <alx@kernel.org>
man/man3/_Fork.3 [new file with mode: 0644]

diff --git a/man/man3/_Fork.3 b/man/man3/_Fork.3
new file mode 100644 (file)
index 0000000..95b0bc6
--- /dev/null
@@ -0,0 +1,29 @@
+.\" Copyright, The authors of the Linux man-pages project
+.\"
+.\" SPDX-License-Identifier: Linux-man-pages-copyleft
+.\"
+.TH _Fork 3 (date) "Linux man-pages (unreleased)"
+.SH NAME
+_Fork \- create a child process
+.SH LIBRARY
+Standard C library
+.RI ( libc ,\~ \-lc )
+.SH SYNOPSIS
+.nf
+.B #include <unistd.h>
+.P
+.B pid_t _Fork(void);
+.fi
+.SH DESCRIPTION
+This function is equivalent to
+.BR fork (2),
+except that fork handlers registered with
+.BR pthread_atfork (3)
+are not called.
+.SH STANDARDS
+POSIX.1-2024.
+.SH HISTORY
+POSIX.1-2024.
+.SH SEE ALSO
+.BR fork (2),
+.BR vfork (2)