You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SafepointHandler::IsOwnedByTheThread() is used in a few
ASSERT()/RELEASE_ASSERT() and accesses the [owner_] field
unsynchronized.
Issue #47788
TEST=Fixes one race reported when building TSAN in DEBUG mode.
Change-Id: I64371265d60c9bb68c299d1c1e8abc2175b33bc8
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/221331
Reviewed-by: Slava Egorov <vegorov@google.com>
Commit-Queue: Martin Kustermann <kustermann@google.com>
When building
Debug
modeTSAN
the app-jit training will lead toThe read in question here - which is not captured by TSAN due to pruning of old stacks - is caused by a debug-mode only assert.
The text was updated successfully, but these errors were encountered: