Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: tools/tsan.supp

Issue 373863002: Suppress getRefCnt() calls from SkImageFilter. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Suppressions for Thread Sanitizer 1 # Suppressions for Thread Sanitizer
2 # 2 #
3 # CAREFUL! Comments must go on their own line or your suppressions will silentl y fail. 3 # CAREFUL! Comments must go on their own line or your suppressions will silentl y fail.
4 4
5 # WebP races (harmlessly) choosing function pointers for SIMD versions of some o f its functions. 5 # WebP races (harmlessly) choosing function pointers for SIMD versions of some o f its functions.
6 race:third_party/externals/libwebp 6 race:third_party/externals/libwebp
7 7
8 # Poppler races on startup. 8 # Poppler races on startup.
9 race:libpoppler.so 9 race:libpoppler.so
10 # LCMS is used by poppler, and also races. 10 # LCMS is used by poppler, and also races.
(...skipping 12 matching lines...) Expand all
23 23
24 # Not threadsafe, should be fixed. 24 # Not threadsafe, should be fixed.
25 race:RefFCI 25 race:RefFCI
26 race:SkString 26 race:SkString
27 race:SkPDF 27 race:SkPDF
28 28
29 # These race benignly as used by DMQuiltTask: skia:2725. 29 # These race benignly as used by DMQuiltTask: skia:2725.
30 # Suppress while I look for a more focused way to silence this. 30 # Suppress while I look for a more focused way to silence this.
31 race:SkPixelRef::callGenIDChangeListeners 31 race:SkPixelRef::callGenIDChangeListeners
32 race:SkPixelRef::needsNewGenID 32 race:SkPixelRef::needsNewGenID
33
34 # This calls SkRefCnt::getRefCnt(), which is not thread safe. skia:2726
35 race:SkImageFilter::filterImage
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698