Added note that CLONE_STOP (which no-one ever used anyway) is now deprecated.

This commit is contained in:
Michael Kerrisk 2008-04-14 13:03:17 +00:00
parent ff902aca81
commit ef37eaf2e8
1 changed files with 5 additions and 1 deletions

View File

@ -43,7 +43,7 @@
.\" FIXME 2.6.25: CLONE_IO flag to clone() causes I/O contexts (used in the
.\" CFQ block I/O scheduler) to be shared with the new child process.
.\"
.TH CLONE 2 2007-07-26 "Linux" "Linux Programmer's Manual"
.TH CLONE 2 2008-04-13 "Linux" "Linux Programmer's Manual"
.SH NAME
clone, __clone2 \- create a child process
.SH SYNOPSIS
@ -329,6 +329,10 @@ is set, then the child is initially stopped (as though it was sent a
signal), and must be resumed by sending it a
.B SIGCONT
signal.
.I "From Linux 2.6.25 this flag is deprecated."
You probably never wanted to use it,
you certainly shouldn't be using, and soon it will go away.
.TP
.B CLONE_VFORK
If