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

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

Issue 1552003: Suppress two benign races in sqlite... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 8 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 ############################ 1 ############################
2 # Chromium 2 # Chromium
3 3
4 { 4 {
5 bug_23245, bug_25385 (1) 5 bug_23245, bug_25385 (1)
6 ThreadSanitizer:Race 6 ThreadSanitizer:Race
7 fun:*base*Thread*ThreadMain* 7 fun:*base*Thread*ThreadMain*
8 } 8 }
9 9
10 { 10 {
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 ############################ 222 ############################
223 # Benign race in SQLLite 223 # Benign race in SQLLite
224 { 224 {
225 Two writes, same value (SQLLite pthreadMutexAlloc) 225 Two writes, same value (SQLLite pthreadMutexAlloc)
226 ThreadSanitizer:Race 226 ThreadSanitizer:Race
227 ... 227 ...
228 fun:pthreadMutexAlloc 228 fun:pthreadMutexAlloc
229 fun:sqlite3MutexAlloc 229 fun:sqlite3MutexAlloc
230 } 230 }
231 231
232 {
233 Two writes, same value (under sqlite3Malloc)
234 ThreadSanitizer:Race
235 ...
236 fun:sqlite3Malloc*
237 }
238
239 {
240 Two writes, same value (sqlite3_initialize)
241 ThreadSanitizer:Race
242 fun:sqlite3_initialize
243 fun:openDatabase
244 }
245
232 ############################ 246 ############################
233 # Benign races in libc 247 # Benign races in libc
234 248
235 # A benign race inside the implementation of internal libc mutex 249 # A benign race inside the implementation of internal libc mutex
236 { 250 {
237 Benign races in __lll_*lock_*_private 251 Benign races in __lll_*lock_*_private
238 ThreadSanitizer:Race 252 ThreadSanitizer:Race
239 fun:__lll_*lock_*_private 253 fun:__lll_*lock_*_private
240 } 254 }
241 255
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 ThreadSanitizer:Race 304 ThreadSanitizer:Race
291 ... 305 ...
292 fun:gethostbyname2_r* 306 fun:gethostbyname2_r*
293 } 307 }
294 308
295 { 309 {
296 Benign race in nss (PR_EnterMonitor) 310 Benign race in nss (PR_EnterMonitor)
297 ThreadSanitizer:Race 311 ThreadSanitizer:Race
298 fun:PR_EnterMonitor 312 fun:PR_EnterMonitor
299 } 313 }
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