summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2018-09-14 05:08:31 (GMT)
committerGitHub <noreply@github.com>2018-09-14 05:08:31 (GMT)
commit19003841e965bbf56fd06824d6093620c1b66f9e (patch)
tree626ed792088f60c7191d4815e847ad0925593b7d /Tools
parentea13740a37347d68d096b11b87c9167917ccfc22 (diff)
downloadcpython-19003841e965bbf56fd06824d6093620c1b66f9e.zip
cpython-19003841e965bbf56fd06824d6093620c1b66f9e.tar.gz
cpython-19003841e965bbf56fd06824d6093620c1b66f9e.tar.bz2
bpo-6721: Hold logging locks across fork() (GH-4071)
bpo-6721: When os.fork() was called while another thread holds a logging lock, the child process may deadlock when it tries to log. This fixes that by acquiring all logging locks before fork and releasing them afterwards. A regression test that fails before this change is included. Within the new unittest itself: There is a small _potential_ due to mixing of fork and a thread in the child process if the parent's thread happened to hold a non-reentrant library call lock (malloc?) when the os.fork() happens. buildbots and time will tell if this actually manifests itself in this test or not. :/ A functionality test that avoids that would be a challenge. An alternate test that isn't trying to produce the deadlock itself but just checking that the release and acquire calls are made would be the next best alternative if so.
Diffstat (limited to 'Tools')
0 files changed, 0 insertions, 0 deletions