clone.2: wfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2015-05-05 09:02:33 +02:00
parent bbdc3380fd
commit 8ef021ea00
1 changed files with 5 additions and 5 deletions

View File

@ -177,7 +177,7 @@ in order to specify what is shared between the calling process
and the child process:
.TP
.BR CLONE_CHILD_CLEARTID " (since Linux 2.5.49)"
Erase child thread ID at location
Erase the child thread ID at the location
.I ctid
in child memory when the child exits, and do a wakeup on the futex
at that address.
@ -187,9 +187,9 @@ system call.
This is used by threading libraries.
.TP
.BR CLONE_CHILD_SETTID " (since Linux 2.5.49)"
Store child thread ID at location
Store the child thread ID at the location
.I ctid
in child memory.
in the child's memory.
.TP
.BR CLONE_FILES " (since Linux 2.0)"
If
@ -518,9 +518,9 @@ is set, then the parent of the calling process, rather than the
calling process itself, will be signaled.
.TP
.BR CLONE_PARENT_SETTID " (since Linux 2.5.49)"
Store child thread ID at location
Store the child thread ID at the location
.I ptid
in parent memory.
in the parent's memory.
(In Linux 2.5.32-2.5.48 there was a flag
.B CLONE_SETTID
that did this.)