8000 gh-133467: Add TSAN suppressions for races in typeobject by nascheme · Pull Request #133534 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-133467: Add TSAN suppressions for races in typeobject #133534

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 8, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add TSAN suppressions for races in typeobject.
  • Loading branch information
nascheme committed May 6, 2025
commit 73a77bc190909bfa461d03c4086fff6b695a5631
10 changes: 9 additions & 1 deletion Tools/tsan/suppressions_free_threading.txt
Original file line number Diff line number Diff line change
7A2E Expand Up @@ -46,4 +46,12 @@ race:list_inplace_repeat_lock_held

# PyObject_Realloc internally does memcpy which isn't atomic so can race
# with non-locking reads. See #132070
race:PyObject_Realloc
race:PyObject_Realloc

# See #133467. Some of these could be hard to trigger.
race_top:update_one_slot
race_top:_Py_slot_tp_getattr_hook
race_top:slot_tp_descr_get
race_top:type_set_name
race_top:set_tp_bases
race_top:type_set_bases_unlocked
Loading
0