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

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

Issue 3195009: thread sanitizer ignore for std::basic_string::~basic_string() (Closed)
Patch Set: Created 10 years, 4 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 # 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 23 matching lines...) Expand all
34 34
35 # ignore libc's printf functions 35 # ignore libc's printf functions
36 fun_r:_IO_* 36 fun_r:_IO_*
37 fun:vfprintf 37 fun:vfprintf
38 fun:fwrite 38 fun:fwrite
39 fun:fflush 39 fun:fflush
40 40
41 # Don't instrument intercepts 41 # Don't instrument intercepts
42 src:*ts_valgrind_intercepts.c 42 src:*ts_valgrind_intercepts.c
43 43
44 # std::basic_string uses an un-annotated atomic refcount for its COW
45 # implementation. Ignore std::basic_string<...>::~basic_string() which is
46 # reported as concurrent read of the refcount.
47 fun:_ZNSsD1Ev
48
44 ################################################################## 49 ##################################################################
45 # Don't instrument synchronization code 50 # Don't instrument synchronization code
46 src:*base/waitable_event* 51 src:*base/waitable_event*
47 src:*base/atomic* 52 src:*base/atomic*
48 src:*base/condition_variable* 53 src:*base/condition_variable*
49 src:*base/lock* 54 src:*base/lock*
50 src:*base/stats_counters* 55 src:*base/stats_counters*
51 src:*base/thread_local_storage* 56 src:*base/thread_local_storage*
52 57
53 # Don't instrument tcmalloc 58 # Don't instrument tcmalloc
(...skipping 27 matching lines...) Expand all
81 # This function generates 25% of memory accesses in net_unittests 86 # This function generates 25% of memory accesses in net_unittests
82 fun:*icu_4_2*UnicodeSet*add* 87 fun:*icu_4_2*UnicodeSet*add*
83 88
84 # There's some weird failure test going on in this tiny test function in sqlite 89 # There's some weird failure test going on in this tiny test function in sqlite
85 fun_r:threadLockingTest 90 fun_r:threadLockingTest
86 91
87 # Ignore accesses below GetCurrentThreadIdentifier. 92 # Ignore accesses below GetCurrentThreadIdentifier.
88 # There is a benign race which is hard to suppress properly, 93 # There is a benign race which is hard to suppress properly,
89 # see http://crbug.com/44580 94 # see http://crbug.com/44580
90 fun_r:*ChromeThread*GetCurrentThreadIdentifier* 95 fun_r:*ChromeThread*GetCurrentThreadIdentifier*
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