OLD | NEW |
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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 // http://crbug.com/246968 | 98 // http://crbug.com/246968 |
99 "race:webrtc::VideoCodingModuleImpl::RegisterPacketRequestCallback\n" | 99 "race:webrtc::VideoCodingModuleImpl::RegisterPacketRequestCallback\n" |
100 | 100 |
101 // http://crbug.com/246974 | 101 // http://crbug.com/246974 |
102 "race:content::GpuWatchdogThread::CheckArmed\n" | 102 "race:content::GpuWatchdogThread::CheckArmed\n" |
103 | 103 |
104 // http://crbug.com/257396 | 104 // http://crbug.com/257396 |
105 "race:base::trace_event::" | 105 "race:base::trace_event::" |
106 "TraceEventTestFixture_TraceSamplingScope_Test::TestBody\n" | 106 "TraceEventTestFixture_TraceSamplingScope_Test::TestBody\n" |
107 | 107 |
| 108 // http://crbug.com/258479 |
| 109 "race:SamplingStateScope\n" |
| 110 "race:g_trace_state\n" |
| 111 |
108 // http://crbug.com/258499 | 112 // http://crbug.com/258499 |
109 "race:third_party/skia/include/core/SkRefCnt.h\n" | 113 "race:third_party/skia/include/core/SkRefCnt.h\n" |
110 | 114 |
111 // http://crbug.com/268924 | 115 // http://crbug.com/268924 |
112 "race:base::g_power_monitor\n" | 116 "race:base::g_power_monitor\n" |
113 "race:base::PowerMonitor::PowerMonitor\n" | 117 "race:base::PowerMonitor::PowerMonitor\n" |
114 "race:base::PowerMonitor::AddObserver\n" | 118 "race:base::PowerMonitor::AddObserver\n" |
115 "race:base::PowerMonitor::RemoveObserver\n" | 119 "race:base::PowerMonitor::RemoveObserver\n" |
116 "race:base::PowerMonitor::IsOnBatteryPower\n" | 120 "race:base::PowerMonitor::IsOnBatteryPower\n" |
117 | 121 |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 // https://crbug.com/569682 | 277 // https://crbug.com/569682 |
274 "race:blink::ThreadState::visitStackRoots\n" | 278 "race:blink::ThreadState::visitStackRoots\n" |
275 | 279 |
276 // http://crbug.com/582274 | 280 // http://crbug.com/582274 |
277 "race:usrsctp_close\n" | 281 "race:usrsctp_close\n" |
278 | 282 |
279 // End of suppressions. | 283 // End of suppressions. |
280 ; // Please keep this semicolon. | 284 ; // Please keep this semicolon. |
281 | 285 |
282 #endif // THREAD_SANITIZER | 286 #endif // THREAD_SANITIZER |
OLD | NEW |