Module Name: src
Committed By: dholland
Date: Fri Jul 18 15:56:44 UTC 2014
Modified Files:
src/lib/libc/sys: vfork.2
Log Message:
fix typo and minor usage issue
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/lib/libc/sys/vfork.2
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/sys/vfork.2
diff -u src/lib/libc/sys/vfork.2:1.24 src/lib/libc/sys/vfork.2:1.25
--- src/lib/libc/sys/vfork.2:1.24 Thu Aug 7 16:44:11 2003
+++ src/lib/libc/sys/vfork.2 Fri Jul 18 15:56:44 2014
@@ -1,4 +1,4 @@
-.\" $NetBSD: vfork.2,v 1.24 2003/08/07 16:44:11 agc Exp $
+.\" $NetBSD: vfork.2,v 1.25 2014/07/18 15:56:44 dholland Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -73,12 +73,12 @@ The
.Nm
system call can normally be used just like
.Xr fork 2 .
-It does not work, however, to return while running in the childs context
+It does not work, however, to return while running in the child's context
from the procedure that called
.Fn vfork
since the eventual return from
.Fn vfork
-would then return to a no longer existent stack frame.
+would then return to a no longer existing stack frame.
Be careful, also, to call
.Xr _exit 2
rather than