1 //===-- guarded_pool_allocator_fuchsia.h ------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #if defined(__Fuchsia__)
10 #ifndef GWP_ASAN_GUARDED_POOL_ALLOCATOR_FUCHSIA_H_
11 #define GWP_ASAN_GUARDED_POOL_ALLOCATOR_FUCHSIA_H_
12 
13 #include <zircon/types.h>
14 
15 namespace gwp_asan {
16 struct PlatformSpecificMapData {
17   zx_handle_t Vmar;
18 };
19 } // namespace gwp_asan
20 
21 #endif // GWP_ASAN_GUARDED_POOL_ALLOCATOR_FUCHSIA_H_
22 #endif // defined(__Fuchsia__)
23