Home | History | Annotate | Line # | Download | only in ubsan
      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
     26