Skip to content

Commit 60d04af

Browse files
committed
adjust wording for the posix_spawn()
also remove parens after function name (to be aligned to the overall style)
1 parent 3245b9f commit 60d04af

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

threads.tex

+9-9
Original file line numberDiff line numberDiff line change
@@ -636,12 +636,12 @@
636636
\texttt{libpthread}) was the same as \funnm{forkall}().
637637
\item Examples: \example{pthreads/fork.c},
638638
\example{pthreads/fork-not-in-main.c}, and also \example{pthreads/forkall.c}
639-
\item \hlabel{ATFORK} You can use \funnm{pthread\_atfork}() to set handlers that
640-
are executed before \funnm{fork}() is called in the parent process, and then after
641-
\funnm{fork}() is called both in the parent and its child. The handlers are
642-
executed in the context of the thread that calls the \funnm{fork}(). Such
643-
handlers are very useful when \funnm{fork}() is used not only as a wrapper
644-
around \funnm{exec}(). After \funnm{fork}(), all variables in the child are in
639+
\item \hlabel{ATFORK} You can use \funnm{pthread\_atfork} to set handlers that
640+
are executed before \funnm{fork} is called in the parent process, and then after
641+
\funnm{fork} is called both in the parent and its child. The handlers are
642+
executed in the context of the thread that calls the \funnm{fork}. Such
643+
handlers are very useful when \funnm{fork} is used not only as a wrapper
644+
around \funnm{exec}. After \funnm{fork}, all variables in the child are in
645645
the state as in the parent, so if a thread not present in the child held a mutex
646646
in the parent (see page \pageref{MUTEXES}), the mutex stays locked in the child,
647647
and trying to lock it in the child will lead to a deadlock. However, if the
@@ -654,9 +654,9 @@
654654
\item This scheme will only work if the \emph{\texttt{pre-fork}} handler
655655
maintains the same locking protocol/ordering as is used in the
656656
application/library. Sometimes that is just not possible due to multiple complex
657-
orderings in place. Very often \funnm{fork}() is called just as a means for
658-
later \funnm{exec}(). In such case the programmer would be better off using
659-
\funnm{posix\_spawn}().
657+
orderings in place. Very often \funnm{fork} is called just as a means for
658+
later \funnm{exec}. In such case the programmer might be better off using
659+
\funnm{posix\_spawn}.
660660
\item Example: \example{pthreads/atfork.c}
661661
\item For more on this topic, see [Butenhof].
662662
\item See page \pageref{MUTEXES} on why mutexes locked in other threads on

0 commit comments

Comments
 (0)