_exit.2: Minor rewording

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2017-03-15 12:34:35 +01:00
parent 07a5f3db57
commit 55873ed61c
1 changed files with 4 additions and 5 deletions

View File

@ -53,11 +53,10 @@ _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
The function
.BR _exit ()
terminates the calling process "immediately".
Any open file descriptors
belonging to the process are closed; any children of the process are
inherited by process 1,
.IR init ,
and the process's parent is sent a
Any open file descriptors belonging to the process are closed.
Any children of the process are inherited by process 1,
.IR init .
The process's parent is sent a
.B SIGCHLD
signal.
.LP