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

Side by Side Diff: build/sanitizers/tsan_suppressions.cc

Issue 1180693002: Update from https://crrev.com/333737 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 6 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
« no previous file with comments | « build/linux/system.gyp ('k') | build/secondary/third_party/android_tools/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 // http://crbug.com/273047 134 // http://crbug.com/273047
135 "race:base::*::g_lazy_tls_ptr\n" 135 "race:base::*::g_lazy_tls_ptr\n"
136 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" 136 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n"
137 137
138 // http://crbug.com/280466 138 // http://crbug.com/280466
139 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" 139 "race:content::WebRtcAudioCapturer::SetCapturerSource\n"
140 140
141 // http://crbug.com/285242 141 // http://crbug.com/285242
142 "race:media::PulseAudioOutputStream::SetVolume\n" 142 "race:media::PulseAudioOutputStream::SetVolume\n"
143 143
144 // http://crbug.com/296883
145 "race:net::URLFetcherCore::Stop\n"
146
147 // http://crbug.com/308590 144 // http://crbug.com/308590
148 "race:CustomThreadWatcher::~CustomThreadWatcher\n" 145 "race:CustomThreadWatcher::~CustomThreadWatcher\n"
149 146
150 // http://crbug.com/310851 147 // http://crbug.com/310851
151 "race:net::ProxyResolverV8Tracing::Job::~Job\n" 148 "race:net::ProxyResolverV8Tracing::Job::~Job\n"
152 149
153 // http://crbug.com/313726 150 // http://crbug.com/313726
154 "race:CallbackWasCalled\n" 151 "race:CallbackWasCalled\n"
155 152
156 // http://crbug.com/327330 153 // http://crbug.com/327330
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 "race:webrtc::RemoteNtpTimeEstimator::Estimate\n" 275 "race:webrtc::RemoteNtpTimeEstimator::Estimate\n"
279 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" 276 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n"
280 277
281 // http://crbug.com/397022 278 // http://crbug.com/397022
282 "deadlock:" 279 "deadlock:"
283 "base::trace_event::TraceEventTestFixture_ThreadOnceBlocking_Test::TestBody\n" 280 "base::trace_event::TraceEventTestFixture_ThreadOnceBlocking_Test::TestBody\n"
284 281
285 // http://crbug.com/415472 282 // http://crbug.com/415472
286 "deadlock:base::trace_event::TraceLog::GetCategoryGroupEnabled\n" 283 "deadlock:base::trace_event::TraceLog::GetCategoryGroupEnabled\n"
287 284
288 // http://crbug.com/425057 285 // http://crbug.com/490856
289 "deadlock:webrtc::ViEChannelManagerScoped::ViEChannelManagerScoped\n" 286 "deadlock:content::TracingControllerImpl::SetEnabledOnFileThread\n"
290 287
291 // http://crbug.com/417193 288 // http://crbug.com/417193
292 // Suppressing both AudioContext.{cpp,h}. 289 // Suppressing both AudioContext.{cpp,h}.
293 "race:modules/webaudio/AudioContext\n" 290 "race:modules/webaudio/AudioContext\n"
294 291
295 // https://code.google.com/p/skia/issues/detail?id=3294 292 // https://code.google.com/p/skia/issues/detail?id=3294
296 "race:SkBaseMutex::acquire\n" 293 "race:SkBaseMutex::acquire\n"
297 294
298 // https://crbug.com/430533 295 // https://crbug.com/430533
299 "race:TileTaskGraphRunner::Run\n" 296 "race:TileTaskGraphRunner::Run\n"
(...skipping 13 matching lines...) Expand all
313 // https://crbug.com/459429 310 // https://crbug.com/459429
314 "race:randomnessPid\n" 311 "race:randomnessPid\n"
315 312
316 // https://crbug.com/454655 313 // https://crbug.com/454655
317 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" 314 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n"
318 315
319 // End of suppressions. 316 // End of suppressions.
320 ; // Please keep this semicolon. 317 ; // Please keep this semicolon.
321 318
322 #endif // THREAD_SANITIZER 319 #endif // THREAD_SANITIZER
OLDNEW
« no previous file with comments | « build/linux/system.gyp ('k') | build/secondary/third_party/android_tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698