diff options
author | jkoshy <jkoshy@FreeBSD.org> | 1998-11-23 03:23:14 +0000 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 1998-11-23 03:23:14 +0000 |
commit | b8628da9ab78733475d199dbf3489a840f9ab882 (patch) | |
tree | 0c69fa4f68ff20f677c04ccb16c89c4951fba008 /lib/libc | |
parent | ad7080d581f4d14be46b9ce97e1d89ab54565fd9 (diff) | |
download | FreeBSD-src-b8628da9ab78733475d199dbf3489a840f9ab882.zip FreeBSD-src-b8628da9ab78733475d199dbf3489a840f9ab882.tar.gz |
Don't mention exit(3) in explanation; _exit(2) is a better choice.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/vfork.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/vfork.2 b/lib/libc/sys/vfork.2 index 5fff122..2c97af9 100644 --- a/lib/libc/sys/vfork.2 +++ b/lib/libc/sys/vfork.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)vfork.2 8.1 (Berkeley) 6/4/93 -.\" $Id: vfork.2,v 1.9 1997/11/18 03:59:30 jdp Exp $ +.\" $Id: vfork.2,v 1.10 1998/01/02 19:22:49 alex Exp $ .\" .Dd June 4, 1993 .Dt VFORK 2 @@ -57,7 +57,7 @@ in that the child borrows the parent's memory and thread of control until a call to .Xr execve 2 or an exit (either by a call to -.Xr exit 3 +.Xr _exit 2 or abnormally). The parent process is suspended while the child is using its resources. .Pp |