1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
.\" Copyright, The authors of the Linux man-pages project
.\"
.\" SPDX-License-Identifier: Linux-man-pages-copyleft
.\"
.TH _Fork 3 2025-10-29 "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)
|