OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 char kTSanDefaultSuppressions[] = | 22 char kTSanDefaultSuppressions[] = |
23 | 23 |
24 // WebRTC specific suppressions. | 24 // WebRTC specific suppressions. |
25 | 25 |
26 // Split up suppressions covered previously by thread.cc and messagequeue.cc. | 26 // Split up suppressions covered previously by thread.cc and messagequeue.cc. |
27 "race:rtc::MessageQueue::Quit\n" | 27 "race:rtc::MessageQueue::Quit\n" |
28 "race:FileVideoCapturerTest::VideoCapturerListener::OnFrameCaptured\n" | 28 "race:FileVideoCapturerTest::VideoCapturerListener::OnFrameCaptured\n" |
29 "race:vp8cx_remove_encoder_threads\n" | 29 "race:vp8cx_remove_encoder_threads\n" |
30 "race:third_party/libvpx_new/source/libvpx/vp9/common/vp9_scan.h\n" | 30 "race:third_party/libvpx_new/source/libvpx/vp9/common/vp9_scan.h\n" |
31 | 31 |
32 // Usage of trace callback and trace level is racy in libjingle_media_unittests. | 32 // Usage of trace callback and trace level is racy in rtc_media_unittests. |
33 // https://code.google.com/p/webrtc/issues/detail?id=3372 | 33 // https://code.google.com/p/webrtc/issues/detail?id=3372 |
34 "race:webrtc::TraceImpl::WriteToFile\n" | 34 "race:webrtc::TraceImpl::WriteToFile\n" |
35 "race:webrtc::VideoEngine::SetTraceFilter\n" | 35 "race:webrtc::VideoEngine::SetTraceFilter\n" |
36 "race:webrtc::VoiceEngine::SetTraceFilter\n" | 36 "race:webrtc::VoiceEngine::SetTraceFilter\n" |
37 "race:webrtc::Trace::set_level_filter\n" | 37 "race:webrtc::Trace::set_level_filter\n" |
38 "race:webrtc::GetStaticInstance<webrtc::TraceImpl>\n" | 38 "race:webrtc::GetStaticInstance<webrtc::TraceImpl>\n" |
39 | 39 |
40 // Audio processing | 40 // Audio processing |
41 // https://code.google.com/p/webrtc/issues/detail?id=2521 for details. | 41 // https://code.google.com/p/webrtc/issues/detail?id=2521 for details. |
42 "race:webrtc/modules/audio_processing/aec/aec_core.c\n" | 42 "race:webrtc/modules/audio_processing/aec/aec_core.c\n" |
43 "race:webrtc/modules/audio_processing/aec/aec_rdft.c\n" | 43 "race:webrtc/modules/audio_processing/aec/aec_rdft.c\n" |
44 | 44 |
45 // Race in pulse initialization. | 45 // Race in pulse initialization. |
46 // https://code.google.com/p/webrtc/issues/detail?id=5152 | 46 // https://code.google.com/p/webrtc/issues/detail?id=5152 |
47 "race:webrtc::AudioDeviceLinuxPulse::Init\n" | 47 "race:webrtc::AudioDeviceLinuxPulse::Init\n" |
48 | 48 |
49 // rtc_unittest | 49 // rtc_unittests |
50 // https://code.google.com/p/webrtc/issues/detail?id=3911 for details. | 50 // https://code.google.com/p/webrtc/issues/detail?id=3911 for details. |
51 "race:rtc::AsyncInvoker::OnMessage\n" | 51 "race:rtc::AsyncInvoker::OnMessage\n" |
52 "race:rtc::FireAndForgetAsyncClosure<FunctorB>::Execute\n" | 52 "race:rtc::FireAndForgetAsyncClosure<FunctorB>::Execute\n" |
53 "race:rtc::MessageQueueManager::Clear\n" | 53 "race:rtc::MessageQueueManager::Clear\n" |
54 "race:rtc::Thread::Clear\n" | 54 "race:rtc::Thread::Clear\n" |
55 // https://code.google.com/p/webrtc/issues/detail?id=3914 | 55 // https://code.google.com/p/webrtc/issues/detail?id=3914 |
56 "race:rtc::AsyncInvoker::~AsyncInvoker\n" | 56 "race:rtc::AsyncInvoker::~AsyncInvoker\n" |
57 // https://code.google.com/p/webrtc/issues/detail?id=2080 | 57 // https://code.google.com/p/webrtc/issues/detail?id=2080 |
58 "race:webrtc/base/logging.cc\n" | 58 "race:webrtc/base/logging.cc\n" |
59 "race:webrtc/base/sharedexclusivelock_unittest.cc\n" | 59 "race:webrtc/base/sharedexclusivelock_unittest.cc\n" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" | 91 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" |
92 | 92 |
93 // Race between InitCpuFlags and TestCpuFlag in libyuv. | 93 // Race between InitCpuFlags and TestCpuFlag in libyuv. |
94 // https://code.google.com/p/libyuv/issues/detail?id=508 | 94 // https://code.google.com/p/libyuv/issues/detail?id=508 |
95 "race:InitCpuFlags\n" | 95 "race:InitCpuFlags\n" |
96 | 96 |
97 // End of suppressions. | 97 // End of suppressions. |
98 ; // Please keep this semicolon. | 98 ; // Please keep this semicolon. |
99 | 99 |
100 #endif // THREAD_SANITIZER | 100 #endif // THREAD_SANITIZER |
OLD | NEW |