_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 The function
.BR _exit () .BR _exit ()
terminates the calling process "immediately". terminates the calling process "immediately".
Any open file descriptors Any open file descriptors belonging to the process are closed.
belonging to the process are closed; any children of the process are Any children of the process are inherited by process 1,
inherited by process 1, .IR init .
.IR init , The process's parent is sent a
and the process's parent is sent a
.B SIGCHLD .B SIGCHLD
signal. signal.
.LP .LP