OLD | NEW |
1 ############################ | 1 ############################ |
2 # Chromium | 2 # Chromium |
3 | 3 |
4 { | 4 { |
5 bug_21259 | 5 bug_21259 |
6 ThreadSanitizer:Race | 6 ThreadSanitizer:Race |
7 ... | 7 ... |
8 fun:*tracked_objects*ThreadData*StartTracking* | 8 fun:*tracked_objects*ThreadData*StartTracking* |
9 } | 9 } |
10 | 10 |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 ThreadSanitizer:Race | 105 ThreadSanitizer:Race |
106 fun:*talk_base*MessageQueue*Stop* | 106 fun:*talk_base*MessageQueue*Stop* |
107 } | 107 } |
108 | 108 |
109 { | 109 { |
110 bug_25913 (libjingle) (2) | 110 bug_25913 (libjingle) (2) |
111 ThreadSanitizer:Race | 111 ThreadSanitizer:Race |
112 fun:*talk_base*MessageQueue*Get* | 112 fun:*talk_base*MessageQueue*Get* |
113 } | 113 } |
114 | 114 |
| 115 # The race happens during enumeration of ChromeThreads. |
| 116 # For each ChromeThread we check whether its message_loop() |
| 117 # equals MessageLoop::current(). |
| 118 # The race can happen if one of the ChromeThreads is exiting. |
| 119 # This is benign since current thread can't exit while we |
| 120 # execute GetCurrentThreadIdentifier() and other message_loops |
| 121 # won't match the current one anyway. |
| 122 { |
| 123 Benign race under ChromeThread::GetCurrentThreadIdentifier |
| 124 fun:*base*Thread*message_loop* |
| 125 fun:*ChromeThread*GetCurrentThreadIdentifier* |
| 126 } |
| 127 |
115 ############################ | 128 ############################ |
116 # Data races in tests | 129 # Data races in tests |
117 | 130 |
118 # TODO(timurrrr): bug item | 131 # TODO(timurrrr): bug item |
119 { | 132 { |
120 Data race on bool in base/thread_unittest | 133 Data race on bool in base/thread_unittest |
121 ThreadSanitizer:Race | 134 ThreadSanitizer:Race |
122 ... | 135 ... |
123 fun:*ToggleValue*Run* | 136 fun:*ToggleValue*Run* |
124 } | 137 } |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 } | 254 } |
242 | 255 |
243 # We already ignore memory accesses inside ld | 256 # We already ignore memory accesses inside ld |
244 # but we also need to ignore accesses below it. | 257 # but we also need to ignore accesses below it. |
245 { | 258 { |
246 fun:_dl_close | 259 fun:_dl_close |
247 ThreadSanitizer:Race | 260 ThreadSanitizer:Race |
248 ... | 261 ... |
249 fun:_dl_close | 262 fun:_dl_close |
250 } | 263 } |
| 264 |
| 265 # fprintf is thread-safe. The benign races happen on the internal lock. |
| 266 { |
| 267 Benign races below fprintf |
| 268 ThreadSanitizer:Race |
| 269 ... |
| 270 fun:buffered_vfprintf |
| 271 ... |
| 272 fun:fprintf |
| 273 } |
OLD | NEW |