]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/ubsan/ubsan_signals_standalone.h
Merge compiler-rt trunk r338150 (just before the 7.0.0 branch point),
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / ubsan / ubsan_signals_standalone.h
1 //=-- ubsan_signals_standalone.h
2 //------------------------------------------------===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10 //
11 // Installs signal handlers and related interceptors for UBSan standalone.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef UBSAN_SIGNALS_STANDALONE_H
16 #define UBSAN_SIGNALS_STANDALONE_H
17
18 namespace __ubsan {
19
20 // Initializes signal handlers and interceptors.
21 void InitializeDeadlySignals();
22
23 } // namespace __ubsan
24
25 #endif // UBSAN_SIGNALS_STANDALONE_H