diff options
Diffstat (limited to 'contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.h')
-rw-r--r-- | contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.h b/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.h new file mode 100644 index 000000000000..128eff266fb7 --- /dev/null +++ b/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.h @@ -0,0 +1,24 @@ +//=-- ubsan_signals_standalone.h +//------------------------------------------------===// +// +// 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 +// +//===----------------------------------------------------------------------===// +// +// Installs signal handlers and related interceptors for UBSan standalone. +// +//===----------------------------------------------------------------------===// + +#ifndef UBSAN_SIGNALS_STANDALONE_H +#define UBSAN_SIGNALS_STANDALONE_H + +namespace __ubsan { + +// Initializes signal handlers and interceptors. +void InitializeDeadlySignals(); + +} // namespace __ubsan + +#endif // UBSAN_SIGNALS_STANDALONE_H |