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 24 matching lines...) Expand all Loading... |
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. |
| 46 // https://code.google.com/p/webrtc/issues/detail?id=5152 |
| 47 "race:webrtc::AudioDeviceLinuxPulse::Init\n" |
| 48 |
45 // rtc_unittest | 49 // rtc_unittest |
46 // 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. |
47 "race:rtc::AsyncInvoker::OnMessage\n" | 51 "race:rtc::AsyncInvoker::OnMessage\n" |
48 "race:rtc::FireAndForgetAsyncClosure<FunctorB>::Execute\n" | 52 "race:rtc::FireAndForgetAsyncClosure<FunctorB>::Execute\n" |
49 "race:rtc::MessageQueueManager::Clear\n" | 53 "race:rtc::MessageQueueManager::Clear\n" |
50 "race:rtc::Thread::Clear\n" | 54 "race:rtc::Thread::Clear\n" |
51 // https://code.google.com/p/webrtc/issues/detail?id=3914 | 55 // https://code.google.com/p/webrtc/issues/detail?id=3914 |
52 "race:rtc::AsyncInvoker::~AsyncInvoker\n" | 56 "race:rtc::AsyncInvoker::~AsyncInvoker\n" |
53 // https://code.google.com/p/webrtc/issues/detail?id=2080 | 57 // https://code.google.com/p/webrtc/issues/detail?id=2080 |
54 "race:webrtc/base/logging.cc\n" | 58 "race:webrtc/base/logging.cc\n" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" | 91 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" |
88 | 92 |
89 // Race between InitCpuFlags and TestCpuFlag in libyuv. | 93 // Race between InitCpuFlags and TestCpuFlag in libyuv. |
90 // https://code.google.com/p/libyuv/issues/detail?id=508 | 94 // https://code.google.com/p/libyuv/issues/detail?id=508 |
91 "race:InitCpuFlags\n" | 95 "race:InitCpuFlags\n" |
92 | 96 |
93 // End of suppressions. | 97 // End of suppressions. |
94 ; // Please keep this semicolon. | 98 ; // Please keep this semicolon. |
95 | 99 |
96 #endif // THREAD_SANITIZER | 100 #endif // THREAD_SANITIZER |
OLD | NEW |