Skip to content

Commit 19fea3d

Browse files
add PyObject_Realloc suppressions
1 parent 00cf5ea commit 19fea3d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Tools/tsan/suppressions_free_threading.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,7 @@ race_top:rangeiter_next
4343
# of ptr-sized copies to be thread-safe. (Issue #129069)
4444
race:list_ass_slice_lock_held
4545
race:list_inplace_repeat_lock_held
46+
47+
# PyObject_Realloc internally does memcpy which isn't atomic so can race
48+
# with non-locking reads. See #132070
49+
race:PyObject_Realloc

0 commit comments

Comments
 (0)