We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fc708e commit 1f3a2e9Copy full SHA for 1f3a2e9
proc.tex
@@ -901,7 +901,8 @@
901
\item \label{SPAWN} Creating new process with \texttt{fork} and replacing the
902
process address space etc. with a new one after \texttt{exec} has been done is
903
expensive and has other problems. To make kernel create new process directly
904
-from executable \texttt{posix\_spawn} can be used.
+from executable \texttt{posix\_spawn} can be used. The new process can be waited
905
+on with \texttt{waitpid} etc. just like in the case of \texttt{fork}.
906
Example: \example{exec/spawn.c}
907
\end{itemize}
908
0 commit comments