xref _exit(2) or exit(3) instead of exit(2)
This commit is contained in:
parent
d61bcdd8e8
commit
68d5856411
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: execve.2,v 1.10 1997/05/12 07:46:33 mikel Exp $
|
||||
.\" $NetBSD: execve.2,v 1.11 1997/07/10 07:54:12 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1980, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -259,7 +259,7 @@ the real
|
|||
is ``root'', then the program has some of the powers
|
||||
of a super-user as well.
|
||||
.Sh SEE ALSO
|
||||
.Xr exit 2 ,
|
||||
.Xr _exit 2 ,
|
||||
.Xr fork 2 ,
|
||||
.Xr execl 3 ,
|
||||
.Xr environ 7
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: vfork.2,v 1.7 1997/06/30 18:42:51 phil Exp $
|
||||
.\" $NetBSD: vfork.2,v 1.8 1997/07/10 07:54:13 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1980, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -62,7 +62,7 @@ differs from
|
|||
in that the parent is suspended until the child makes a call to
|
||||
.Xr execve 2
|
||||
or an exit (either by a call to
|
||||
.Xr exit 2
|
||||
.Xr _exit 2
|
||||
or abnormally.)
|
||||
.Pp
|
||||
.Fn Vfork
|
||||
|
@ -75,7 +75,7 @@ the parent's context.
|
|||
.Xr wait 2 ,
|
||||
.Sh DIAGNOSTICS
|
||||
Same as for
|
||||
.Xr fork .
|
||||
.Xr fork 2 .
|
||||
.Sh BUGS
|
||||
.Pp
|
||||
To avoid a possible deadlock situation,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: wait.2,v 1.7 1997/02/07 05:33:07 mikel Exp $
|
||||
.\" $NetBSD: wait.2,v 1.8 1997/07/10 07:54:15 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1980, 1991, 1993, 1994
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -158,7 +158,7 @@ One of the first three macros will evaluate to a non-zero (true) value:
|
|||
True if the process terminated normally by a call to
|
||||
.Xr _exit 2
|
||||
or
|
||||
.Xr exit 2 .
|
||||
.Xr exit 3 .
|
||||
.It Fn WIFSIGNALED status
|
||||
True if the process terminated due to receipt of a signal.
|
||||
.It Fn WIFSTOPPED status
|
||||
|
@ -180,7 +180,7 @@ is true, evaluates to the low-order 8 bits
|
|||
of the argument passed to
|
||||
.Xr _exit 2
|
||||
or
|
||||
.Xr exit 2
|
||||
.Xr exit 3
|
||||
by the child.
|
||||
.It Fn WTERMSIG status
|
||||
If
|
||||
|
@ -301,7 +301,7 @@ and the ability to restart a pending
|
|||
.Fn wait
|
||||
call are extensions to the POSIX interface.
|
||||
.Sh SEE ALSO
|
||||
.Xr exit 2 ,
|
||||
.Xr _exit 2 ,
|
||||
.Xr sigaction 2
|
||||
.Sh HISTORY
|
||||
A
|
||||
|
|
Loading…
Reference in New Issue