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

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

Issue 1038573002: Fixed thread-unsafe use of gfx::Image in app shortcut creation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 8 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
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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 "race:cricket::P2PTransportChannel::OnConnectionDestroyed\n" 238 "race:cricket::P2PTransportChannel::OnConnectionDestroyed\n"
239 "race:cricket::P2PTransportChannel::AddConnection\n" 239 "race:cricket::P2PTransportChannel::AddConnection\n"
240 240
241 // http://crbug.com/348984 241 // http://crbug.com/348984
242 "race:sctp_express_handle_sack\n" 242 "race:sctp_express_handle_sack\n"
243 "race:system_base_info\n" 243 "race:system_base_info\n"
244 244
245 // http://crbug.com/363999 245 // http://crbug.com/363999
246 "race:v8::internal::EnterDebugger::*EnterDebugger\n" 246 "race:v8::internal::EnterDebugger::*EnterDebugger\n"
247 247
248 // http://crbug.com/364006
249 "race:gfx::ImageFamily::~ImageFamily\n"
250
251 // https://code.google.com/p/v8/issues/detail?id=3143 248 // https://code.google.com/p/v8/issues/detail?id=3143
252 "race:v8::internal::FLAG_track_double_fields\n" 249 "race:v8::internal::FLAG_track_double_fields\n"
253 250
254 // https://crbug.com/369257 251 // https://crbug.com/369257
255 // TODO(mtklein): annotate properly and remove suppressions. 252 // TODO(mtklein): annotate properly and remove suppressions.
256 "race:SandboxIPCHandler::HandleFontMatchRequest\n" 253 "race:SandboxIPCHandler::HandleFontMatchRequest\n"
257 "race:SkFontConfigInterfaceDirect::matchFamilyName\n" 254 "race:SkFontConfigInterfaceDirect::matchFamilyName\n"
258 "race:SkFontConfigInterface::GetSingletonDirectInterface\n" 255 "race:SkFontConfigInterface::GetSingletonDirectInterface\n"
259 "race:FcStrStaticName\n" 256 "race:FcStrStaticName\n"
260 257
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 // https://crbug.com/459429 319 // https://crbug.com/459429
323 "race:randomnessPid\n" 320 "race:randomnessPid\n"
324 321
325 // https://crbug.com/454655 322 // https://crbug.com/454655
326 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" 323 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n"
327 324
328 // End of suppressions. 325 // End of suppressions.
329 ; // Please keep this semicolon. 326 ; // Please keep this semicolon.
330 327
331 #endif // THREAD_SANITIZER 328 #endif // THREAD_SANITIZER
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698