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 /Python | |
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 'Python')
-rw-r--r-- | Python/ceval.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 3488b9c..2648add 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -142,6 +142,25 @@ PyEval_ReleaseThread(PyThreadState *tstate) Py_FatalError("PyEval_ReleaseThread: wrong thread state"); PyThread_release_lock(interpreter_lock); } + +/* This function is called from PyOS_AfterFork to ensure that newly + created child processes don't hold locks referring to threads which + are not running in the child process. (This could also be done using + pthread_atfork mechanism, at least for the pthreads implementation.) */ + +void +PyEval_ReInitThreads(void) +{ + if (!interpreter_lock) + return; + /*XXX Can't use PyThread_free_lock here because it does too + much error-checking. Doing this cleanly would require + adding a new function to each thread_*.h. Instead, just + create a new lock and waste a little bit of memory */ + interpreter_lock = PyThread_allocate_lock(); + PyThread_acquire_lock(interpreter_lock, 1); + main_thread = PyThread_get_thread_ident(); +} #endif /* Functions save_thread and restore_thread are always defined so |