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

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

Issue 14258004: Ignore memory accesses from __strncasecmp_l_ssse3 and strncasecmp to prevent TSan v1 from reporting… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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 | 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 # 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:*/libfreetype* 6 obj:*/libfreetype*
7 obj:*/libdbus* 7 obj:*/libdbus*
8 8
9 # we ignore the whole NSS library for now since 9 # we ignore the whole NSS library for now since
10 # its instrumentation is very slow. 10 # its instrumentation is very slow.
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 fun_r:pcache1Fetch 176 fun_r:pcache1Fetch
177 177
178 # "Suppress" a data race in TraceLog::GetCategory which has 178 # "Suppress" a data race in TraceLog::GetCategory which has
179 # fun:MessageLoop::RunTask at the top of the "current" stack which we don't want 179 # fun:MessageLoop::RunTask at the top of the "current" stack which we don't want
180 # to suppress. See http://crbug.com/98926 180 # to suppress. See http://crbug.com/98926
181 fun:*base*debug*TraceLog*GetCategoryInternal* 181 fun:*base*debug*TraceLog*GetCategoryInternal*
182 182
183 # libc threading on GCC 4.6 183 # libc threading on GCC 4.6
184 fun:arena_thread_freeres 184 fun:arena_thread_freeres
185 185
186 # __strncasecmp_l_ssse3 overreads the buffer causing TSan to report a data race
187 # on another object. See http://crbug.com/177074
188 fun:*strncasecmp*
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