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

Side by Side Diff: tools/valgrind/tsan/ignores.txt

Issue 6354012: Update the suppression for a race on bool in HistoryURLProvider; ignore a fun... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/valgrind/tsan/suppressions.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file lists the functions, object files and source files 1 # This file lists the functions, object files and source files
2 # which should be ignored (i.e. not instrumented) by ThreadSanitizer. 2 # which should be ignored (i.e. not instrumented) by ThreadSanitizer.
3 # See http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores. 3 # See http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores.
4 4
5 # ignore these libraries 5 # ignore these libraries
6 obj:*/ld-2* 6 obj:*/ld-2*
7 obj:*/libpthread-* 7 obj:*/libpthread-*
8 obj:*/libfreetype* 8 obj:*/libfreetype*
9 9
10 # we ignore the whole NSS library for now since 10 # we ignore the whole NSS library for now since
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 # is simply "base::Thread::ThreadMain" 115 # is simply "base::Thread::ThreadMain"
116 # See http://crbug.com/63678 116 # See http://crbug.com/63678
117 fun_r:*BrowserThread*CurrentlyOn* 117 fun_r:*BrowserThread*CurrentlyOn*
118 118
119 # zlib is smarter than we are, see http://www.zlib.net/zlib_faq.html#faq36 119 # zlib is smarter than we are, see http://www.zlib.net/zlib_faq.html#faq36
120 fun_r:inflate 120 fun_r:inflate
121 121
122 # X11 reads the _XErrorFunction callback in a racey way, see 122 # X11 reads the _XErrorFunction callback in a racey way, see
123 # http://crbug.com/65278 123 # http://crbug.com/65278
124 fun:XSetErrorHandler 124 fun:XSetErrorHandler
125
126 # TSan doesn't support lockf and hence shared memory locks in this function;
127 # http://crbug.com/45083
128 fun_r:*base*StatsTable*AddCounter*
OLDNEW
« no previous file with comments | « no previous file | tools/valgrind/tsan/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698