summaryrefslogtreecommitdiffstats
path: root/Parser/intrcheck.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-08-27 17:34:07 (GMT)
committerGuido van Rossum <guido@python.org>2000-08-27 17:34:07 (GMT)
commitfee3a2dd8cf984b8261032086fe513bf7327b601 (patch)
tree2a579f921c3203bc159adcfd554961755cb1dc5b /Parser/intrcheck.c
parentc79519569d20d90cc9ec6ff8584dfd959bd2e1f1 (diff)
downloadcpython-fee3a2dd8cf984b8261032086fe513bf7327b601.zip
cpython-fee3a2dd8cf984b8261032086fe513bf7327b601.tar.gz
cpython-fee3a2dd8cf984b8261032086fe513bf7327b601.tar.bz2
Charles Waldman's patch to reinitialize the interpreter lock after a
fork. This solves the test_fork1 problem. (ceval.c, signalmodule.c, intrcheck.c) SourceForge: [ Patch #101226 ] make threading fork-safe
Diffstat (limited to 'Parser/intrcheck.c')
-rw-r--r--Parser/intrcheck.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c
index 519f404..d20ed61 100644
--- a/Parser/intrcheck.c
+++ b/Parser/intrcheck.c
@@ -195,4 +195,7 @@ PyOS_InterruptOccurred(void)
void
PyOS_AfterFork(void)
{
+#ifdef WITH_THREAD
+ PyEval_ReInitThreads();
+#endif
}