diff options
author | Guido van Rossum <guido@python.org> | 2000-08-27 17:34:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-08-27 17:34:07 (GMT) |
commit | fee3a2dd8cf984b8261032086fe513bf7327b601 (patch) | |
tree | 2a579f921c3203bc159adcfd554961755cb1dc5b /Parser/intrcheck.c | |
parent | c79519569d20d90cc9ec6ff8584dfd959bd2e1f1 (diff) | |
download | cpython-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.c | 3 |
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 } |