https://github.com/python/cpython/commit/cce5ae60821ceb7f72cec0ed48f7350c6a63fdc9 commit: cce5ae60821ceb7f72cec0ed48f7350c6a63fdc9 branch: main author: mpage <[email protected]> committer: colesbury <[email protected]> date: 2024-04-25T11:48:16-04:00 summary:
gh-117657: Add a couple more TSAN suppressions (#118256) files: M Tools/tsan/suppressions_free_threading.txt diff --git a/Tools/tsan/suppressions_free_threading.txt b/Tools/tsan/suppressions_free_threading.txt index 6ceb275925c5e1..aa954ca9b6c09c 100644 --- a/Tools/tsan/suppressions_free_threading.txt +++ b/Tools/tsan/suppressions_free_threading.txt @@ -24,6 +24,8 @@ race:_PyInterpreterState_IsRunningMain race:_PyObject_GC_IS_SHARED race:_PyObject_GC_SET_SHARED race:_PyObject_GC_TRACK +# https://gist.github.com/mpage/0a24eb2dd458441ededb498e9b0e5de8 +race:_PyParkingLot_Park race:_PyType_HasFeature race:assign_version_tag race:compare_unicode_unicode @@ -43,3 +45,6 @@ race:set_inheritable race:start_the_world race:tstate_set_detached race:unicode_hash + +# https://gist.github.com/mpage/6962e8870606cfc960e159b407a0cb40 +thread:pthread_create _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
