33 lines · c
1//===-- 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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef SCUDO_FUCHSIA_H_10#define SCUDO_FUCHSIA_H_11 12#include "platform.h"13 14#if SCUDO_FUCHSIA15 16#include <stdint.h>17#include <zircon/types.h>18 19namespace scudo {20 21struct MapPlatformData {22 zx_handle_t Vmar;23 zx_handle_t Vmo;24 uintptr_t VmarBase;25 uint64_t VmoSize;26};27 28} // namespace scudo29 30#endif // SCUDO_FUCHSIA31 32#endif // SCUDO_FUCHSIA_H_33