OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file contains the default suppressions for ThreadSanitizer. | 5 // This file contains the default suppressions for ThreadSanitizer. |
6 // You can also pass additional suppressions via TSAN_OPTIONS: | 6 // You can also pass additional suppressions via TSAN_OPTIONS: |
7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to | 7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to |
8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 | 8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 |
9 // for more info. | 9 // for more info. |
10 | 10 |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 | 130 |
131 // http://crbug.com/268941 | 131 // http://crbug.com/268941 |
132 "race:tracked_objects::ThreadData::tls_index_\n" | 132 "race:tracked_objects::ThreadData::tls_index_\n" |
133 | 133 |
134 // http://crbug.com/270037 | 134 // http://crbug.com/270037 |
135 "race:gLibCleanupFunctions\n" | 135 "race:gLibCleanupFunctions\n" |
136 | 136 |
137 // http://crbug.com/272095 | 137 // http://crbug.com/272095 |
138 "race:base::g_top_manager\n" | 138 "race:base::g_top_manager\n" |
139 | 139 |
140 // http://crbug.com/272987 | |
141 "race:webrtc::MediaStreamTrack<webrtc::AudioTrackInterface>::set_enabled\n" | |
142 | |
143 // http://crbug.com/273047 | 140 // http://crbug.com/273047 |
144 "race:base::*::g_lazy_tls_ptr\n" | 141 "race:base::*::g_lazy_tls_ptr\n" |
145 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" | 142 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" |
146 | 143 |
147 // http://crbug.com/280466 | 144 // http://crbug.com/280466 |
148 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" | 145 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" |
149 | 146 |
150 // http://crbug.com/285242 | 147 // http://crbug.com/285242 |
151 "race:media::PulseAudioOutputStream::SetVolume\n" | 148 "race:media::PulseAudioOutputStream::SetVolume\n" |
152 | 149 |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 // https://crbug.com/459429 | 322 // https://crbug.com/459429 |
326 "race:randomnessPid\n" | 323 "race:randomnessPid\n" |
327 | 324 |
328 // https://crbug.com/454655 | 325 // https://crbug.com/454655 |
329 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" | 326 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" |
330 | 327 |
331 // End of suppressions. | 328 // End of suppressions. |
332 ; // Please keep this semicolon. | 329 ; // Please keep this semicolon. |
333 | 330 |
334 #endif // THREAD_SANITIZER | 331 #endif // THREAD_SANITIZER |
OLD | NEW |