#1683 prevent forking from interfering in threading storage

This should prevent some test_multiprocessing failures
This commit is contained in:
Benjamin Peterson 2008-06-13 00:09:47 +00:00
parent 26305a03e3
commit 114f7e5fff
4 changed files with 37 additions and 0 deletions

View file

@ -925,5 +925,6 @@ PyOS_AfterFork(void)
main_thread = PyThread_get_thread_ident();
main_pid = getpid();
_PyImport_ReInitLock();
PyThread_ReInitTLS();
#endif
}