In preparation for the inbuilt options parser, this is a minor refactor of optional components including: - Putting certain optional elements in the right header files, according to their function and their dependencies. - Cleaning up some old and mostly-dead code. - Moving some functions into anonymous namespaces to prevent symbol export. Reviewed By: cryptoad, eugenis Differential Revision: https://reviews.llvm.org/D94117
23 lines
891 B
C++
23 lines
891 B
C++
//===-- segv_handler_fuchsia.cpp --------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "gwp_asan/optional/segv_handler.h"
|
|
|
|
// GWP-ASan on Fuchsia doesn't currently support signal handlers.
|
|
|
|
namespace gwp_asan {
|
|
namespace segv_handler {
|
|
void installSignalHandlers(gwp_asan::GuardedPoolAllocator * /* GPA */,
|
|
Printf_t /* Printf */,
|
|
backtrace::PrintBacktrace_t /* PrintBacktrace */,
|
|
backtrace::SegvBacktrace_t /* SegvBacktrace */) {}
|
|
|
|
void uninstallSignalHandlers() {}
|
|
} // namespace segv_handler
|
|
} // namespace gwp_asan
|