_exit.2: Minor wording tweaks

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2020-03-04 22:33:41 +01:00
parent b2a8e05384
commit 07f462e9f2
1 changed files with 1 additions and 2 deletions

View File

@ -50,7 +50,6 @@ _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
.RE .RE
.ad .ad
.SH DESCRIPTION .SH DESCRIPTION
The function
.BR _exit () .BR _exit ()
terminates the calling process "immediately". terminates the calling process "immediately".
Any open file descriptors belonging to the process are closed. Any open file descriptors belonging to the process are closed.
@ -67,7 +66,7 @@ signal.
The value The value
.I "status & 0xFF" .I "status & 0xFF"
is returned to the parent process as the process's exit status, and is returned to the parent process as the process's exit status, and
can be collected using one of the can be collected by the parent using one of the
.BR wait (2) .BR wait (2)
family of calls. family of calls.
.PP .PP