Very minor rewording.

This commit is contained in:
Michael Kerrisk 2006-07-22 14:07:21 +00:00
parent 51ffcca030
commit 70cbdedffa
2 changed files with 7 additions and 12 deletions

View File

@ -40,8 +40,9 @@ nice \- change process priority
adds adds
.I inc .I inc
to the nice value for the calling process. to the nice value for the calling process.
(A large nice value means a low priority.) (A higher nice value means a low priority.)
Only the super\%user may specify a negative increment, or priority increase. Only the super\%user may specify a negative increment,
or priority increase.
The range for nice values is described in The range for nice values is described in
.BR getpriority (2). .BR getpriority (2).
.SH "RETURN VALUE" .SH "RETURN VALUE"

View File

@ -40,8 +40,9 @@ function has the same effect as
.BR fork (), .BR fork (),
except that the behaviour is undefined if the process created by except that the behaviour is undefined if the process created by
.BR vfork () .BR vfork ()
either modifies any data other than a variable of type pid_t used either modifies any data other than a variable of type
to store the return value from .I pid_t
used to store the return value from
.BR vfork (), .BR vfork (),
or returns from the function in which or returns from the function in which
.BR vfork () .BR vfork ()
@ -50,13 +51,6 @@ was called, or calls any other function before successfully calling
or one of the or one of the
.BR exec () .BR exec ()
family of functions. family of functions.
.SH ERRORS
.TP
.B EAGAIN
Too many processes; try again.
.TP
.B ENOMEM
There is insufficient swap space for the new process.
.SH "LINUX DESCRIPTION" .SH "LINUX DESCRIPTION"
.BR vfork (), .BR vfork (),
just like just like
@ -89,7 +83,7 @@ but may call
.BR _exit (). .BR _exit ().
.PP .PP
Signal handlers are inherited, but not shared. Signals to the parent Signal handlers are inherited, but not shared. Signals to the parent
arrive after the child releases the parent. arrive after the child releases the parent's memory.
.SH "HISTORIC DESCRIPTION" .SH "HISTORIC DESCRIPTION"
Under Linux, Under Linux,
.BR fork () .BR fork ()