mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
#1683 prevent forking from interfering in threading storage
This should prevent some test_multiprocessing failures
This commit is contained in:
parent
26305a03e3
commit
114f7e5fff
4 changed files with 37 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
|||
/* Check for interrupts */
|
||||
|
||||
#include "Python.h"
|
||||
#include "pythread.h"
|
||||
|
||||
#ifdef QUICKWIN
|
||||
|
||||
|
|
@ -172,5 +173,6 @@ PyOS_AfterFork(void)
|
|||
{
|
||||
#ifdef WITH_THREAD
|
||||
PyEval_ReInitThreads();
|
||||
PyThread_ReInitTLS();
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue