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