f29fae9ab541121718083c7965c6e9408be77bc2
[oota-llvm.git] / include / llvm / System / Signals.h
1 //===- llvm/System/Signals.h - Signal Handling support ----------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines some helpful functions for dealing with the possibility of
11 // unix signals occuring while your program is running.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_SYSTEM_SIGNALS_H
16 #define LLVM_SYSTEM_SIGNALS_H
17
18 #include "llvm/System/Path.h"
19
20 namespace llvm {
21 namespace sys {
22
23   /// This function registers signal handlers to ensure that if a signal gets
24   /// delivered that the named file is removed.
25   /// @brief Remove a file if a fatal signal occurs.
26   void RemoveFileOnSignal(const Path &Filename);
27
28   /// This function registers a signal handler to ensure that if a fatal signal
29   /// gets delivered to the process that the named directory and all its
30   /// contents are removed.
31   /// @brief Remove a directory if a fatal signal occurs.
32   void RemoveDirectoryOnSignal(const Path& path);
33
34   /// When an error signal (such as SIBABRT or SIGSEGV) is delivered to the
35   /// process, print a stack trace and then exit.
36   /// @brief Print a stack trace if a fatal signal occurs.
37   void PrintStackTraceOnErrorSignal();
38
39   /// This function registers a function to be called when the user "interrupts"
40   /// the program (typically by pressing ctrl-c).  When the user interrupts the
41   /// program, the specified interrupt function is called instead of the program
42   /// being killed, and the interrupt function automatically disabled.  Note
43   /// that interrupt functions are not allowed to call any non-reentrant
44   /// functions.  An null interrupt function pointer disables the current
45   /// installed function.
46   /// @brief Register a function to be called when ctrl-c is pressed.
47   void SetInterruptFunction(void (*IF)());
48 } // End sys namespace
49 } // End llvm namespace
50
51 #endif