| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| 75 "race:sctp_close\n" | 75 "race:sctp_close\n" |
| 76 | 76 |
| 77 // Potential deadlocks detected after roll in r6516. | 77 // Potential deadlocks detected after roll in r6516. |
| 78 // https://code.google.com/p/webrtc/issues/detail?id=3509 | 78 // https://code.google.com/p/webrtc/issues/detail?id=3509 |
| 79 "deadlock:webrtc::RTCPReceiver::SetSsrcs\n" | |
| 80 "deadlock:webrtc::test::UdpSocketManagerPosixImpl::RemoveSocket\n" | 79 "deadlock:webrtc::test::UdpSocketManagerPosixImpl::RemoveSocket\n" |
| 81 "deadlock:webrtc::vcm::VideoReceiver::RegisterPacketRequestCallback\n" | |
| 82 | 80 |
| 83 // TODO(pbos): Trace events are racy due to lack of proper POD atomics. | 81 // TODO(pbos): Trace events are racy due to lack of proper POD atomics. |
| 84 // https://code.google.com/p/webrtc/issues/detail?id=2497 | 82 // https://code.google.com/p/webrtc/issues/detail?id=2497 |
| 85 "race:*trace_event_unique_catstatic*\n" | 83 "race:*trace_event_unique_catstatic*\n" |
| 86 | 84 |
| 87 // https://code.google.com/p/webrtc/issues/detail?id=4719 | 85 // https://code.google.com/p/webrtc/issues/detail?id=4719 |
| 88 "race:webrtc::voe::TransmitMixer::PrepareDemux\n" | 86 "race:webrtc::voe::TransmitMixer::PrepareDemux\n" |
| 89 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" | 87 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" |
| 90 | 88 |
| 91 // Race between InitCpuFlags and TestCpuFlag in libyuv. | 89 // Race between InitCpuFlags and TestCpuFlag in libyuv. |
| 92 // https://code.google.com/p/libyuv/issues/detail?id=508 | 90 // https://code.google.com/p/libyuv/issues/detail?id=508 |
| 93 "race:InitCpuFlags\n" | 91 "race:InitCpuFlags\n" |
| 94 | 92 |
| 95 // End of suppressions. | 93 // End of suppressions. |
| 96 ; // Please keep this semicolon. | 94 ; // Please keep this semicolon. |
| 97 | 95 |
| 98 #endif // THREAD_SANITIZER | 96 #endif // THREAD_SANITIZER |
| OLD | NEW |