34 lines · cpp
1//===-- sanitizer_symbolizer_report_fuchsia.cpp2//-----------------------------------===//3//4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5// See https://llvm.org/LICENSE.txt for license information.6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7//8//===----------------------------------------------------------------------===//9//10// Implementation of the report functions for fuchsia.11//12//===----------------------------------------------------------------------===//13 14#include "sanitizer_platform.h"15 16#if SANITIZER_SYMBOLIZER_MARKUP17 18# include "sanitizer_common.h"19 20namespace __sanitizer {21void StartReportDeadlySignal() {}22 23void ReportDeadlySignal(const SignalContext &sig, u32 tid,24 UnwindSignalStackCallbackType unwind,25 const void *unwind_context) {}26 27void HandleDeadlySignal(void *siginfo, void *context, u32 tid,28 UnwindSignalStackCallbackType unwind,29 const void *unwind_context) {}30 31} // namespace __sanitizer32 33#endif // SANITIZER_SYMBOLIZER_MARKUP34