]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-120321: Fix TSan reported race in gen_clear_frame (gh-142995)
authorSam Gross <colesbury@gmail.com>
Fri, 19 Dec 2025 22:33:49 +0000 (17:33 -0500)
committerGitHub <noreply@github.com>
Fri, 19 Dec 2025 22:33:49 +0000 (17:33 -0500)
commit4ea3c1a04747978361b497798428423cbb6a7146
tree526e60bb20885c380b02dbaa3c45a15254b71a86
parent08bc03ff2a5545a165ba57f4ca73b8ff705dc757
gh-120321: Fix TSan reported race in gen_clear_frame (gh-142995)

TSan treats compare-exchanges that fail as if they are writes
so there is a false positive with the read of gi_frame_state in
gen_close.
Objects/genobject.c