# Suppressions for TSan v2
# https://code.google.com/p/thread-sanitizer/wiki/Suppressions

# Incorrectly detected lock cycles in test-lockers
# https://code.google.com/p/thread-sanitizer/issues/detail?id=81
deadlock:LockAndUnlockDifferentIsolatesThread::Run

# A global safepoint might lock client isolate mutexes in any order, which
# would be reported as potential deadlocks.
deadlock:GlobalSafepoint::EnterGlobalSafepointScope

# Allow racy reads of constant HeapNumber field values, for concurrent compilers
# that promise that this race is benign (compilation will fail if the race
# happens).
race:RacyReadHeapNumberBits
