man-pages/man2/vfork.2

197 lines
6.1 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright (c) 1999 Andries Brouwer (aeb@cwi.nl), 1 Nov 1999
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
2004-11-03 13:51:07 +00:00
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
2004-11-03 13:51:07 +00:00
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" 1999-11-10: Merged text taken from the page contributed by
.\" Reed H. Petty (rhp@draper.net)
.\"
2007-05-30 05:36:26 +00:00
.TH VFORK 2 1999-11-01 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
vfork \- create a child process and block parent
.SH SYNOPSIS
.B #include <sys/types.h>
.br
.B #include <unistd.h>
.sp
.B pid_t vfork(void);
2007-05-16 02:45:55 +00:00
.SH DESCRIPTION
.SS "Standard Description"
2006-08-03 13:57:17 +00:00
(From SUSv2 / POSIX draft.)
2004-11-03 13:51:07 +00:00
The
2005-07-06 06:52:35 +00:00
.BR vfork ()
2004-11-03 13:51:07 +00:00
function has the same effect as
.BR fork (2),
except that the behavior is undefined if the process created by
2005-07-06 06:52:35 +00:00
.BR vfork ()
either modifies any data other than a variable of type
.I pid_t
2006-07-22 14:07:21 +00:00
used to store the return value from
2005-07-06 06:52:35 +00:00
.BR vfork (),
2004-11-03 13:51:07 +00:00
or returns from the function in which
2005-07-06 06:52:35 +00:00
.BR vfork ()
2004-11-03 13:51:07 +00:00
was called, or calls any other function before successfully calling
.BR _exit (2)
2004-11-03 13:51:07 +00:00
or one of the
2007-05-21 21:07:25 +00:00
.BR exec (3)
2004-11-03 13:51:07 +00:00
family of functions.
2007-05-16 02:45:55 +00:00
.SS "Linux Description"
2005-07-06 06:52:35 +00:00
.BR vfork (),
2004-11-03 13:51:07 +00:00
just like
.BR fork (2),
creates a child process of the calling process.
For details and return value and errors, see
.BR fork (2).
.PP
2005-07-06 06:52:35 +00:00
.BR vfork ()
2004-11-03 13:51:07 +00:00
is a special case of
.BR clone (2).
It is used to create new processes without copying the page tables of
the parent process.
It may be useful in performance sensitive applications
2004-11-03 13:51:07 +00:00
where a child will be created which then immediately issues an
.BR execve (2) .
2004-11-03 13:51:07 +00:00
.PP
2005-07-06 06:52:35 +00:00
.BR vfork ()
differs from
.BR fork (2)
2005-10-19 14:16:57 +00:00
in that the parent is suspended until the child makes a call to
2004-11-03 13:51:07 +00:00
.BR execve (2)
or
.BR _exit (2).
The child shares all memory with its parent, including the stack, until
.BR execve (2)
is issued by the child.
The child must not return from the current function or call
.BR exit (3),
2004-11-03 13:51:07 +00:00
but may call
.BR _exit (2).
2004-11-03 13:51:07 +00:00
.PP
Signal handlers are inherited, but not shared.
Signals to the parent
2006-07-22 14:07:21 +00:00
arrive after the child releases the parent's memory.
2007-05-16 02:45:55 +00:00
.SS "Historic Description"
2004-11-03 13:51:07 +00:00
Under Linux,
.BR fork (2)
2004-11-03 13:51:07 +00:00
is implemented using copy-on-write pages, so the only penalty incurred by
.BR fork (2)
2004-11-03 13:51:07 +00:00
is the time and memory required to duplicate the parent's page tables,
and to create a unique task structure for the child.
However, in the bad old days a
.BR fork (2)
2004-11-03 13:51:07 +00:00
would require making a complete copy of the caller's data space,
often needlessly, since usually immediately afterwards an
2007-05-21 21:07:25 +00:00
.BR exec (3)
is done.
Thus, for greater efficiency, BSD introduced the
2005-07-06 06:52:35 +00:00
.BR vfork ()
2004-11-03 13:51:07 +00:00
system call, that did not fully copy the address space of
the parent process, but borrowed the parent's memory and thread
of control until a call to
.BR execve (2)
or an exit occurred.
The parent process was suspended while the
2004-11-03 13:51:07 +00:00
child was using its resources.
2005-07-06 06:52:35 +00:00
The use of
.BR vfork ()
2005-07-06 06:54:27 +00:00
was tricky: for example, not modifying data
2004-11-03 13:51:07 +00:00
in the parent process depended on knowing which variables are
held in a register.
.SH "CONFORMING TO"
2006-08-03 13:57:17 +00:00
4.3BSD, POSIX.1-2001.
2007-06-13 21:48:16 +00:00
.\" FIXME . Mar 07: in the draft of the next POSIX revision, the spec for
2007-05-21 07:04:09 +00:00
.\" vfork() has been removed. See if this remains so in final version.
2006-08-03 13:57:17 +00:00
The requirements put on
2005-07-06 06:52:35 +00:00
.BR vfork ()
2004-11-03 13:51:07 +00:00
by the standards are weaker than those put on
.BR fork (2),
so an implementation where the two are synonymous is compliant.
In particular, the programmer cannot
2004-11-03 13:51:07 +00:00
rely on the parent remaining blocked until a call of
.BR execve (2)
2004-11-03 13:51:07 +00:00
or
.BR _exit (2)
2007-06-08 12:11:23 +00:00
and cannot rely on any specific behavior wth respect to shared memory.
2004-11-03 13:51:07 +00:00
.\" In AIXv3.1 vfork is equivalent to fork.
.SH NOTES
.SS Linux Notes
Fork handlers established using
.BR pthread_atfork (3)
are not called when a multithreaded program employing
the NPTL threading library calls
.BR vfork ().
Fork handlers are called in this case in a program using the
LinuxThreads threading library.
(See
.BR pthreads (7)
for a description of Linux threading libraries.)
.SS History
The
.BR vfork ()
system call appeared in 3.0BSD.
.\" In the release notes for 4.2BSD Sam Leffler wrote: `vfork: Is still
.\" present, but definitely on its way out'.
In 4.4BSD it was made synonymous to
.BR fork (2)
but NetBSD introduced it again,
cf. http://www.netbsd.org/Documentation/kernel/vfork.html .
In Linux, it has been equivalent to
.BR fork (2)
until 2.2.0-pre6 or so.
Since 2.2.0-pre9 (on i386, somewhat later on
other architectures) it is an independent system call.
Support was added in glibc 2.0.112.
2007-05-18 16:30:46 +00:00
.SH BUGS
It is rather unfortunate that Linux revived this specter from the past.
2007-05-21 12:58:17 +00:00
The BSD man page states:
2007-05-18 16:30:46 +00:00
"This system call will be eliminated when proper system sharing mechanisms
are implemented.
Users should not depend on the memory sharing semantics of
.BR vfork ()
as it will, in that case, be made synonymous to
.BR fork (2).\c
"
Details of the signal handling are obscure and differ between systems.
2007-05-21 12:58:17 +00:00
The BSD man page states:
2007-05-18 16:30:46 +00:00
"To avoid a possible deadlock situation, processes that are children
in the middle of a
.BR vfork ()
2007-06-21 05:38:48 +00:00
are never sent
.B SIGTTOU
or
.B SIGTTIN
signals; rather, output or
2007-05-18 16:30:46 +00:00
.IR ioctl s
are allowed and input attempts result in an end-of-file indication."
.\"
.\" As far as I can tell, the following is not true in 2.6.19:
.\" Currently (Linux 2.3.25),
.\" .BR strace (1)
.\" cannot follow
.\" .BR vfork ()
.\" and requires a kernel patch.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR clone (2),
.BR execve (2),
.BR fork (2),
2006-03-20 21:29:29 +00:00
.BR unshare (2),
2004-11-03 13:51:07 +00:00
.BR wait (2)