1 //===-- sanitizer_symbolizer_report_fuchsia.cpp
2 //-----------------------------------===//
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-exception
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Implementation of the report functions for fuchsia.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "sanitizer_platform.h"
15 
16 #if SANITIZER_SYMBOLIZER_MARKUP
17 
18 #  include "sanitizer_common.h"
19 
20 namespace __sanitizer {
21 void StartReportDeadlySignal() {}
22 
23 void ReportDeadlySignal(const SignalContext &sig, u32 tid,
24                         UnwindSignalStackCallbackType unwind,
25                         const void *unwind_context) {}
26 
27 void HandleDeadlySignal(void *siginfo, void *context, u32 tid,
28                         UnwindSignalStackCallbackType unwind,
29                         const void *unwind_context) {}
30 
31 }  // namespace __sanitizer
32 
33 #endif  // SANITIZER_SYMBOLIZER_MARKUP
34