mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
gh-133467: Add TSAN suppressions for races in typeobject (gh-133534)
This commit is contained in:
parent
8598e57942
commit
8679c8d5cc
1 changed files with 9 additions and 1 deletions
|
@ -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
|
||||
|
||||
# gh-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…
Add table
Add a link
Reference in a new issue