2017-11-29 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / libsanitizer / sanitizer_common / sanitizer_fuchsia.h
blob59b679d6c7faf1de74592648a1abb59fbc504220
1 //===-- sanitizer_fuchsia.h ------------------------------------*- C++ -*-===//
2 //
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
5 //
6 //===---------------------------------------------------------------------===//
7 //
8 // Fuchsia-specific sanitizer support.
9 //
10 //===---------------------------------------------------------------------===//
11 #ifndef SANITIZER_FUCHSIA_H
12 #define SANITIZER_FUCHSIA_H
14 #include "sanitizer_platform.h"
15 #if SANITIZER_FUCHSIA
17 #include "sanitizer_common.h"
19 #include <zircon/sanitizer.h>
21 namespace __sanitizer {
23 extern uptr MainThreadStackBase, MainThreadStackSize;
24 extern sanitizer_shadow_bounds_t ShadowBounds;
26 } // namespace __sanitizer
28 #endif // SANITIZER_FUCHSIA
29 #endif // SANITIZER_FUCHSIA_H