• Guido van Rossum's avatar
    This fix (across 4 files in 3 directories) solves a subtle problem with · 359bcaa5
    Guido van Rossum yazdı
    signal handlers in a fork()ed child process when Python is compiled with
    thread support.  The bug was reported by Scott <scott@chronis.icgroup.com>.
    
    What happens is that after a fork(), the variables used by the signal
    module to determine whether this is the main thread or not are bogus,
    and it decides that no thread is the main thread, so no signals will
    be delivered.
    
    The solution is the addition of PyOS_AfterFork(), which fixes the signal
    module's variables.  A dummy version of the function is present in the
    intrcheck.c source file which is linked when the signal module is not
    used.
    359bcaa5
Adı
Son kayıt (commit)
Son güncelleme
..
Makefile.in Loading commit data...
acceler.c Loading commit data...
assert.h Loading commit data...
bitset.c Loading commit data...
firstsets.c Loading commit data...
grammar.c Loading commit data...
grammar1.c Loading commit data...
intrcheck.c Loading commit data...
listnode.c Loading commit data...
metagrammar.c Loading commit data...
myreadline.c Loading commit data...
node.c Loading commit data...
parser.c Loading commit data...
parser.h Loading commit data...
parsetok.c Loading commit data...
pgen.c Loading commit data...
pgen.h Loading commit data...
pgenmain.c Loading commit data...
printgrammar.c Loading commit data...
tokenizer.c Loading commit data...
tokenizer.h Loading commit data...