Mercurial > hg > CbC > CbC_llvm
view projects/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.h @ 214:0cf2d4ade63d
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 13 Jul 2021 09:53:52 +0900 |
parents | f476a9ba4795 |
children |
line wrap: on
line source
//===-- sanitizer_fuchsia.h ------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===---------------------------------------------------------------------===// // // Fuchsia-specific sanitizer support. // //===---------------------------------------------------------------------===// #ifndef SANITIZER_FUCHSIA_H #define SANITIZER_FUCHSIA_H #include "sanitizer_platform.h" #if SANITIZER_FUCHSIA #include "sanitizer_common.h" #include <zircon/sanitizer.h> namespace __sanitizer { extern uptr MainThreadStackBase, MainThreadStackSize; extern sanitizer_shadow_bounds_t ShadowBounds; } // namespace __sanitizer #endif // SANITIZER_FUCHSIA #endif // SANITIZER_FUCHSIA_H