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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 // http://crbug.com/273047 | 142 // http://crbug.com/273047 |
143 "race:base::*::g_lazy_tls_ptr\n" | 143 "race:base::*::g_lazy_tls_ptr\n" |
144 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" | 144 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" |
145 | 145 |
146 // http://crbug.com/280466 | 146 // http://crbug.com/280466 |
147 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" | 147 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" |
148 | 148 |
149 // http://crbug.com/285242 | 149 // http://crbug.com/285242 |
150 "race:media::PulseAudioOutputStream::SetVolume\n" | 150 "race:media::PulseAudioOutputStream::SetVolume\n" |
151 | 151 |
152 // http://crbug.com/290964 | |
153 "race:PostponeInterruptsScope\n" | |
154 "race:v8::internal::StackGuard::RequestInstallCode\n" | |
155 | |
156 // http://crbug.com/296883 | 152 // http://crbug.com/296883 |
157 "race:net::URLFetcherCore::Stop\n" | 153 "race:net::URLFetcherCore::Stop\n" |
158 | 154 |
159 // http://crbug.com/308590 | 155 // http://crbug.com/308590 |
160 "race:CustomThreadWatcher::~CustomThreadWatcher\n" | 156 "race:CustomThreadWatcher::~CustomThreadWatcher\n" |
161 | 157 |
162 // http://crbug.com/310851 | 158 // http://crbug.com/310851 |
163 "race:net::ProxyResolverV8Tracing::Job::~Job\n" | 159 "race:net::ProxyResolverV8Tracing::Job::~Job\n" |
164 | 160 |
165 // http://crbug.com/313726 | 161 // http://crbug.com/313726 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 "deadlock:content::WebRtcAudioDeviceImpl\n" | 307 "deadlock:content::WebRtcAudioDeviceImpl\n" |
312 | 308 |
313 // http://crbug.com/417193 | 309 // http://crbug.com/417193 |
314 // Suppressing both AudioContext.{cpp,h}. | 310 // Suppressing both AudioContext.{cpp,h}. |
315 "race:modules/webaudio/AudioContext\n" | 311 "race:modules/webaudio/AudioContext\n" |
316 | 312 |
317 // End of suppressions. | 313 // End of suppressions. |
318 ; // Please keep this semicolon. | 314 ; // Please keep this semicolon. |
319 | 315 |
320 #endif // THREAD_SANITIZER | 316 #endif // THREAD_SANITIZER |
OLD | NEW |