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

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

Issue 2092016: Ignore accesses below ChromeThread::GetCurrentThreadIdentifier... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 7 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 | « tools/valgrind/tsan/ignores.txt ('k') | 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 ############################ 1 ############################
2 # Chromium 2 # Chromium
3 3
4 { 4 {
5 bug_23433 5 bug_23433
6 ThreadSanitizer:Race 6 ThreadSanitizer:Race
7 fun:*logging*SetMinLogLevel* 7 fun:*logging*SetMinLogLevel*
8 } 8 }
9 9
10 { 10 {
11 bug_24419 11 bug_24419
12 ThreadSanitizer:Race 12 ThreadSanitizer:Race
13 fun:*BrowserProcessImpl*nspector*iles* 13 fun:*BrowserProcessImpl*nspector*iles*
14 } 14 }
15 15
16 { 16 {
17 bug_25915 17 bug_25915
18 ThreadSanitizer:Race 18 ThreadSanitizer:Race
19 fun:*browser_sync*BookmarkModelWorker* 19 fun:*browser_sync*BookmarkModelWorker*
20 } 20 }
21 21
22 { 22 {
23 bug_37496 23 bug_37496
24 ThreadSanitizer:Race 24 ThreadSanitizer:Race
25 ... 25 ...
26 fun:*browser_sync*SyncShareIntercept*Observe* 26 fun:*browser_sync*SyncShareIntercept*Observe*
27 } 27 }
28 28
29 # The race happens during enumeration of ChromeThreads.
30 # For each ChromeThread we check whether its message_loop()
31 # equals MessageLoop::current().
32 # The race can happen if one of the ChromeThreads is exiting.
33 # This is benign since current thread can't exit while we
34 # execute GetCurrentThreadIdentifier() and other message_loops
35 # won't match the current one anyway.
36 {
37 Benign race under ChromeThread::GetCurrentThreadIdentifier
38 ThreadSanitizer:Race
39 fun:*base*Thread*message_loop*
40 fun:*ChromeThread*GetCurrentThreadIdentifier*
41 }
42
43 ############################ 29 ############################
44 # Real races in third_party 30 # Real races in third_party
45 { 31 {
46 bug_23244 (libevent) 32 bug_23244 (libevent)
47 ThreadSanitizer:Race 33 ThreadSanitizer:Race
48 fun:event_* 34 fun:event_*
49 fun:event_* 35 fun:event_*
50 } 36 }
51 37
52 { 38 {
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 ThreadSanitizer:Race 268 ThreadSanitizer:Race
283 ... 269 ...
284 fun:gethostbyname2_r* 270 fun:gethostbyname2_r*
285 } 271 }
286 272
287 { 273 {
288 Benign race in nss (PR_EnterMonitor) 274 Benign race in nss (PR_EnterMonitor)
289 ThreadSanitizer:Race 275 ThreadSanitizer:Race
290 fun:PR_EnterMonitor 276 fun:PR_EnterMonitor
291 } 277 }
OLDNEW
« no previous file with comments | « tools/valgrind/tsan/ignores.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698