Skip to content

Commit 73a77bc

Browse files
committed
Add TSAN suppressions for races in typeobject.
1 parent 3dfed23 commit 73a77bc

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Tools/tsan/suppressions_free_threading.txt

+9-1
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,12 @@ race:list_inplace_repeat_lock_held
4646

4747
# PyObject_Realloc internally does memcpy which isn't atomic so can race
4848
# with non-locking reads. See #132070
49-
race:PyObject_Realloc
49+
race:PyObject_Realloc
50+
51+
# See #133467. Some of these could be hard to trigger.
52+
race_top:update_one_slot
53+
race_top:_Py_slot_tp_getattr_hook
54+
race_top:slot_tp_descr_get
55+
race_top:type_set_name
56+
race_top:set_tp_bases
57+
race_top:type_set_bases_unlocked

0 commit comments

Comments
 (0)