1 //===-- backtrace_fuchsia.cpp -----------------------------------*- 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 #include "gwp_asan/optional/backtrace.h"
10 
11 // GWP-ASan on Fuchsia doesn't currently support backtraces.
12 
13 namespace gwp_asan {
14 namespace backtrace {
15 
16 options::Backtrace_t getBacktraceFunction() { return nullptr; }
17 PrintBacktrace_t getPrintBacktraceFunction() { return nullptr; }
18 SegvBacktrace_t getSegvBacktraceFunction() { return nullptr; }
19 
20 } // namespace backtrace
21 } // namespace gwp_asan
22