aboutsummaryrefslogtreecommitdiffstats
path: root/include/Support/Signals.h
blob: 211cf111be26445bda9564376fa9194c5765f08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//===- Support/Signals.h - Signal Handling support --------------*- C++ -*-===//
// 
//                     The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
// 
//===----------------------------------------------------------------------===//
//
// This file defines some helpful functions for dealing with the possibility of
// unix signals occuring while your program is running.
//
//===----------------------------------------------------------------------===//

#ifndef SUPPORT_SIGNALS_H
#define SUPPORT_SIGNALS_H

#include <string>

namespace llvm {

  /// RemoveFileOnSignal - This function registers signal handlers to ensure
  /// that if a signal gets delivered that the named file is removed.
  ///
  void RemoveFileOnSignal(const std::string &Filename);

  /// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
  /// SIGSEGV) is delivered to the process, print a stack trace and then exit.
  void PrintStackTraceOnErrorSignal();
} // End llvm namespace

#endif