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

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

Issue 6255014: Ignore memory accesses below remoting::CompressorZlib::Process until the repo... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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:*/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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 fun_r:*BrowserThread*GetCurrentThreadIdentifier* 111 fun_r:*BrowserThread*GetCurrentThreadIdentifier*
112 112
113 # BrowserThread accesses MessageLoop::current() in ::CurrentlyOn. 113 # BrowserThread accesses MessageLoop::current() in ::CurrentlyOn.
114 # We can't use suppressions to hide these reports since the concurrent stack 114 # We can't use suppressions to hide these reports since the concurrent stack
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 # zlib-related reports, not investigated yet. See http://crbug.com/70932
122 fun_r:*remoting*CompressorZlib*Process*
121 123
122 # X11 reads the _XErrorFunction callback in a racey way, see 124 # X11 reads the _XErrorFunction callback in a racey way, see
123 # http://crbug.com/65278 125 # http://crbug.com/65278
124 fun:XSetErrorHandler 126 fun:XSetErrorHandler
125 127
126 # TSan doesn't support lockf and hence shared memory locks in this function; 128 # TSan doesn't support lockf and hence shared memory locks in this function;
127 # http://crbug.com/45083 129 # http://crbug.com/45083
128 fun_r:*base*StatsTable*AddCounter* 130 fun_r:*base*StatsTable*AddCounter*
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