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

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

Issue 8772004: Improve GamepadSeqLock impl Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 8 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
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 ################################################################## 53 ##################################################################
54 # Don't instrument synchronization code 54 # Don't instrument synchronization code
55 src:*base/threading/thread_local_storage* 55 src:*base/threading/thread_local_storage*
56 src:*base/stats_counters* 56 src:*base/stats_counters*
57 src:*base/synchronization/condition_variable* 57 src:*base/synchronization/condition_variable*
58 src:*base/synchronization/lock* 58 src:*base/synchronization/lock*
59 src:*base/synchronization/waitable_event* 59 src:*base/synchronization/waitable_event*
60 60
61 # Don't instrument code dealing with atomics (base::subtle) 61 # Don't instrument code dealing with atomics (base::subtle)
62 fun:*base*subtle*Release_Store* 62 fun:*base*subtle*Release_Store*
63 fun:*base*subtle*NoBarrier_Store*
64 fun:*base*subtle*Acquire_Load*
65 fun:*base*subtle*NoBarrier_Load*
jbates 2012/02/17 23:29:52 Looks like my trace_event code will need this.. ho
dvyukov 2012/02/21 15:18:04 Yes, we already see the reports: http://build.chro
63 fun:*base*subtle*NoBarrier_CompareAndSwap* 66 fun:*base*subtle*NoBarrier_CompareAndSwap*
64 # Keep some mangling so we don't match NoBarrier_AtomicIncrement 67 # Keep some mangling so we don't match NoBarrier_AtomicIncrement
65 fun:*base*subtle23Barrier_AtomicIncrement* 68 fun:*base*subtle23Barrier_AtomicIncrement*
66 69
67 # Don't instrument tcmalloc 70 # Don't instrument tcmalloc
68 src:*/tcmalloc/* 71 src:*/tcmalloc/*
69 72
70 # This function is heavy in net_unittests 73 # This function is heavy in net_unittests
71 fun_r:*disk_cache*BackendImpl*CheckAllEntries* 74 fun_r:*disk_cache*BackendImpl*CheckAllEntries*
72 75
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 fun:__gen_tempname 155 fun:__gen_tempname
153 156
154 # The sqlite cache is racing against a few different stacktraces, 157 # The sqlite cache is racing against a few different stacktraces,
155 # so let's ignore it recursively. See http://crbug.com/84094 158 # so let's ignore it recursively. See http://crbug.com/84094
156 fun_r:pcache1Fetch 159 fun_r:pcache1Fetch
157 160
158 # "Suppress" a data race in TraceLog::GetCategory which has 161 # "Suppress" a data race in TraceLog::GetCategory which has
159 # fun:MessageLoop::RunTask at the top of the "current" stack which we don't want 162 # fun:MessageLoop::RunTask at the top of the "current" stack which we don't want
160 # to suppress. See http://crbug.com/98926 163 # to suppress. See http://crbug.com/98926
161 fun:*base*debug*TraceLog*GetCategoryInternal* 164 fun:*base*debug*TraceLog*GetCategoryInternal*
OLDNEW
« content/common/gamepad_seqlock.cc ('K') | « content/renderer/gamepad_shared_memory_reader.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698