vfork.2: tfix: s/exit(2)/_exit(2)/

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
sobtwmxt 2009-06-21 14:38:05 +02:00 committed by Michael Kerrisk
parent 45f2d4eb13
commit bd16963cbe
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
.\" 1999-11-10: Merged text taken from the page contributed by
.\" Reed H. Petty (rhp@draper.net)
.\"
.TH VFORK 2 2008-10-30 "Linux" "Linux Programmer's Manual"
.TH VFORK 2 2009-06-21 "Linux" "Linux Programmer's Manual"
.SH NAME
vfork \- create a child process and block parent
.SH SYNOPSIS
@ -83,7 +83,7 @@ differs from
in that the parent is suspended until the child terminates
(either normally,
by calling
.BR exit (2),
.BR _exit (2),
or abnormally, after delivery of a fatal signal),
or it makes a call to
.BR execve (2).