diff options
author | mpage <mpage@meta.com> | 2024-04-15 16:17:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 16:17:33 (GMT) |
commit | 6e0b327690c7dd2e4e9091f81f8ad43ad5eb1631 (patch) | |
tree | 079703f4ade9ef4a4b11978b3f1fd4081bdf30c6 /Python/pythonrun.c | |
parent | 47832067da54385c6cd5ad0f4f9d7f7dc69ebdb2 (diff) | |
download | cpython-6e0b327690c7dd2e4e9091f81f8ad43ad5eb1631.zip cpython-6e0b327690c7dd2e4e9091f81f8ad43ad5eb1631.tar.gz cpython-6e0b327690c7dd2e4e9091f81f8ad43ad5eb1631.tar.bz2 |
gh-117657: Quiet TSAN warning about a data race between `start_the_world()` and `tstate_try_attach()` (#117828)
TSAN erroneously reports a data race between the `_Py_atomic_compare_exchange_int`
on `tstate->state` in `tstate_try_attach()` and the non-atomic load of
`tstate->state` in `start_the_world`. The `_Py_atomic_compare_exchange_int` fails,
but TSAN erroneously treats it as a store.
Diffstat (limited to 'Python/pythonrun.c')
0 files changed, 0 insertions, 0 deletions