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 | |
112 // http://crbug.com/258499 | 108 // http://crbug.com/258499 |
113 "race:third_party/skia/include/core/SkRefCnt.h\n" | 109 "race:third_party/skia/include/core/SkRefCnt.h\n" |
114 | 110 |
115 // http://crbug.com/268924 | 111 // http://crbug.com/268924 |
116 "race:base::g_power_monitor\n" | 112 "race:base::g_power_monitor\n" |
117 "race:base::PowerMonitor::PowerMonitor\n" | 113 "race:base::PowerMonitor::PowerMonitor\n" |
118 "race:base::PowerMonitor::AddObserver\n" | 114 "race:base::PowerMonitor::AddObserver\n" |
119 "race:base::PowerMonitor::RemoveObserver\n" | 115 "race:base::PowerMonitor::RemoveObserver\n" |
120 "race:base::PowerMonitor::IsOnBatteryPower\n" | 116 "race:base::PowerMonitor::IsOnBatteryPower\n" |
121 | 117 |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 // https://crbug.com/569682 | 273 // https://crbug.com/569682 |
278 "race:blink::ThreadState::visitStackRoots\n" | 274 "race:blink::ThreadState::visitStackRoots\n" |
279 | 275 |
280 // http://crbug.com/582274 | 276 // http://crbug.com/582274 |
281 "race:usrsctp_close\n" | 277 "race:usrsctp_close\n" |
282 | 278 |
283 // End of suppressions. | 279 // End of suppressions. |
284 ; // Please keep this semicolon. | 280 ; // Please keep this semicolon. |
285 | 281 |
286 #endif // THREAD_SANITIZER | 282 #endif // THREAD_SANITIZER |
OLD | NEW |