| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 // https://code.google.com/p/webrtc/issues/detail?id=3914 | 54 // https://code.google.com/p/webrtc/issues/detail?id=3914 |
| 55 "race:rtc::AsyncInvoker::~AsyncInvoker\n" | 55 "race:rtc::AsyncInvoker::~AsyncInvoker\n" |
| 56 // https://code.google.com/p/webrtc/issues/detail?id=2080 | 56 // https://code.google.com/p/webrtc/issues/detail?id=2080 |
| 57 "race:webrtc/base/logging.cc\n" | 57 "race:webrtc/base/logging.cc\n" |
| 58 "race:webrtc/base/sharedexclusivelock_unittest.cc\n" | 58 "race:webrtc/base/sharedexclusivelock_unittest.cc\n" |
| 59 "race:webrtc/base/signalthread_unittest.cc\n" | 59 "race:webrtc/base/signalthread_unittest.cc\n" |
| 60 // https://code.google.com/p/webrtc/issues/detail?id=4456 | 60 // https://code.google.com/p/webrtc/issues/detail?id=4456 |
| 61 "deadlock:rtc::MessageQueueManager::Clear\n" | 61 "deadlock:rtc::MessageQueueManager::Clear\n" |
| 62 "deadlock:rtc::MessageQueueManager::ClearInternal\n" | 62 "deadlock:rtc::MessageQueueManager::ClearInternal\n" |
| 63 | 63 |
| 64 // libjingle_p2p_unittest | 64 // rtc_pc_unittests |
| 65 // https://code.google.com/p/webrtc/issues/detail?id=2079 | 65 // https://code.google.com/p/webrtc/issues/detail?id=2079 |
| 66 "race:webrtc/base/testclient.cc\n" | 66 "race:webrtc/base/testclient.cc\n" |
| 67 "race:webrtc/base/virtualsocketserver.cc\n" | 67 "race:webrtc/base/virtualsocketserver.cc\n" |
| 68 "race:talk/p2p/base/stunserver_unittest.cc\n" | 68 "race:talk/p2p/base/stunserver_unittest.cc\n" |
| 69 | 69 |
| 70 // third_party/usrsctp | 70 // third_party/usrsctp |
| 71 // TODO(jiayl): https://code.google.com/p/webrtc/issues/detail?id=3492 | 71 // TODO(jiayl): https://code.google.com/p/webrtc/issues/detail?id=3492 |
| 72 "race:user_sctp_timer_iterate\n" | 72 "race:user_sctp_timer_iterate\n" |
| 73 | 73 |
| 74 // https://code.google.com/p/webrtc/issues/detail?id=5151 | 74 // https://code.google.com/p/webrtc/issues/detail?id=5151 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 90 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" | 90 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" |
| 91 | 91 |
| 92 // Race between InitCpuFlags and TestCpuFlag in libyuv. | 92 // Race between InitCpuFlags and TestCpuFlag in libyuv. |
| 93 // https://code.google.com/p/libyuv/issues/detail?id=508 | 93 // https://code.google.com/p/libyuv/issues/detail?id=508 |
| 94 "race:InitCpuFlags\n" | 94 "race:InitCpuFlags\n" |
| 95 | 95 |
| 96 // End of suppressions. | 96 // End of suppressions. |
| 97 ; // Please keep this semicolon. | 97 ; // Please keep this semicolon. |
| 98 | 98 |
| 99 #endif // THREAD_SANITIZER | 99 #endif // THREAD_SANITIZER |
| OLD | NEW |