|
636 | 636 | \texttt{libpthread}) was the same as \funnm{forkall}().
|
637 | 637 | \item Examples: \example{pthreads/fork.c},
|
638 | 638 | \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 |
645 | 645 | the state as in the parent, so if a thread not present in the child held a mutex
|
646 | 646 | in the parent (see page \pageref{MUTEXES}), the mutex stays locked in the child,
|
647 | 647 | and trying to lock it in the child will lead to a deadlock. However, if the
|
|
654 | 654 | \item This scheme will only work if the \emph{\texttt{pre-fork}} handler
|
655 | 655 | maintains the same locking protocol/ordering as is used in the
|
656 | 656 | 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}. |
660 | 660 | \item Example: \example{pthreads/atfork.c}
|
661 | 661 | \item For more on this topic, see [Butenhof].
|
662 | 662 | \item See page \pageref{MUTEXES} on why mutexes locked in other threads on
|
|
0 commit comments