Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2016 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 |
| 11 #ifndef WEBRTC_RTC_BASE_SANITIZER_H_ | 11 #ifndef WEBRTC_RTC_BASE_SANITIZER_H_ |
| 12 #define WEBRTC_RTC_BASE_SANITIZER_H_ | 12 #define WEBRTC_RTC_BASE_SANITIZER_H_ |
| 13 | 13 |
| 14 #include <stddef.h> // for size_t | |
|
kwiberg-webrtc
2017/09/04 23:09:51
This sort of comment would be useful, except that
| |
| 15 | |
| 14 #if defined(__has_feature) | 16 #if defined(__has_feature) |
| 15 #if __has_feature(address_sanitizer) | 17 #if __has_feature(address_sanitizer) |
| 16 #define RTC_HAS_ASAN 1 | 18 #define RTC_HAS_ASAN 1 |
| 17 #endif | 19 #endif |
| 18 #if __has_feature(memory_sanitizer) | 20 #if __has_feature(memory_sanitizer) |
| 19 #define RTC_HAS_MSAN 1 | 21 #define RTC_HAS_MSAN 1 |
| 20 #endif | 22 #endif |
| 21 #endif | 23 #endif |
| 22 #ifndef RTC_HAS_ASAN | 24 #ifndef RTC_HAS_ASAN |
| 23 #define RTC_HAS_ASAN 0 | 25 #define RTC_HAS_ASAN 0 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 107 template <typename T> | 109 template <typename T> |
| 108 inline void MsanCheckInitialized(const T& mem) { | 110 inline void MsanCheckInitialized(const T& mem) { |
| 109 rtc_MsanCheckInitialized(mem.data(), sizeof(mem.data()[0]), mem.size()); | 111 rtc_MsanCheckInitialized(mem.data(), sizeof(mem.data()[0]), mem.size()); |
| 110 } | 112 } |
| 111 | 113 |
| 112 } // namespace rtc | 114 } // namespace rtc |
| 113 | 115 |
| 114 #endif // __cplusplus | 116 #endif // __cplusplus |
| 115 | 117 |
| 116 #endif // WEBRTC_RTC_BASE_SANITIZER_H_ | 118 #endif // WEBRTC_RTC_BASE_SANITIZER_H_ |
| OLD | NEW |