]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-38965: Fix faulthandler._stack_overflow() on GCC 10 (GH-17467)
authorVictor Stinner <vstinner@python.org>
Wed, 4 Dec 2019 20:10:06 +0000 (21:10 +0100)
committerGitHub <noreply@github.com>
Wed, 4 Dec 2019 20:10:06 +0000 (21:10 +0100)
commit8b787964e0a647caa0558b7c29ae501470d727d9
tree0e1e3c90e4c14c5d7b6863e62a7af008c8f44a60
parent7105319ada2e663659020cbe9fdf7ff38f421ab2
bpo-38965: Fix faulthandler._stack_overflow() on GCC 10 (GH-17467)

Use the "volatile" keyword to prevent tail call optimization
on any compiler, rather than relying on compiler specific pragma.
Misc/NEWS.d/next/Tests/2019-12-04-17-08-55.bpo-38965.yqax3m.rst [new file with mode: 0644]
Modules/faulthandler.c