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

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

Issue 4201006: Add suppressions for two bugs found on TSan/UI... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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 ############################ 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 {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 } 48 }
49 49
50 { 50 {
51 bug_57266b 51 bug_57266b
52 ThreadSanitizer:Race 52 ThreadSanitizer:Race
53 ... 53 ...
54 obj:*libffmpegsumo.* 54 obj:*libffmpegsumo.*
55 fun:ThreadSanitizerStartThread 55 fun:ThreadSanitizerStartThread
56 } 56 }
57 57
58 {
59 bug_61210
60 ThreadSanitizer:Race
61 ...
62 fun:linked_ptr<PluginGroup>*
63 }
64
58 ############################ 65 ############################
59 # Real races in third_party 66 # Real races in third_party
60 { 67 {
61 bug_23244 (libevent) 68 bug_23244 (libevent)
62 ThreadSanitizer:Race 69 ThreadSanitizer:Race
63 fun:event_* 70 fun:event_*
64 fun:event_* 71 fun:event_*
65 } 72 }
66 73
67 { 74 {
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 } 253 }
247 254
248 { 255 {
249 Two writes, same value (sqlite3_initialize) 256 Two writes, same value (sqlite3_initialize)
250 ThreadSanitizer:Race 257 ThreadSanitizer:Race
251 fun:sqlite3_initialize 258 fun:sqlite3_initialize
252 fun:openDatabase 259 fun:openDatabase
253 } 260 }
254 261
255 ############################ 262 ############################
263 # Races in V8
264
265 # http://code.google.com/p/v8/issues/detail?id=361
266 {
267 Race on Locker::active_ in v8
268 ThreadSanitizer:Race
269 fun:v8::Locker::*
270 }
271
272 ############################
256 # Benign races in libc 273 # Benign races in libc
257 274
258 # A benign race inside the implementation of internal libc mutex 275 # A benign race inside the implementation of internal libc mutex
259 { 276 {
260 Benign races in __lll_*lock_*_private 277 Benign races in __lll_*lock_*_private
261 ThreadSanitizer:Race 278 ThreadSanitizer:Race
262 fun:__lll_*lock_*_private 279 fun:__lll_*lock_*_private
263 } 280 }
264 281
265 # Benign race below thread-safe time-conversion functions 282 # Benign race below thread-safe time-conversion functions
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 ThreadSanitizer:Race 337 ThreadSanitizer:Race
321 ... 338 ...
322 fun:gethostbyname2_r* 339 fun:gethostbyname2_r*
323 } 340 }
324 341
325 { 342 {
326 Benign race in nss (PR_EnterMonitor) 343 Benign race in nss (PR_EnterMonitor)
327 ThreadSanitizer:Race 344 ThreadSanitizer:Race
328 fun:PR_EnterMonitor 345 fun:PR_EnterMonitor
329 } 346 }
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