OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |