2004-08-29 19:22:48 +00:00
|
|
|
//===- Signals.cpp - Signal Handling support --------------------*- C++ -*-===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-08-29 19:22:48 +00:00
|
|
|
// 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.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-08-29 19:22:48 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines some helpful functions for dealing with the possibility of
|
|
|
|
// Unix signals occuring while your program is running.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/System/Signals.h"
|
2004-12-27 06:16:11 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2004-08-29 19:22:48 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only TRULY operating system
|
2005-04-21 22:55:34 +00:00
|
|
|
//=== independent code.
|
2004-08-29 19:22:48 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include the platform-specific parts of this class.
|
2004-12-27 06:16:11 +00:00
|
|
|
#ifdef LLVM_ON_UNIX
|
2005-01-09 23:29:00 +00:00
|
|
|
#include "Unix/Signals.inc"
|
2004-12-27 06:16:11 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LLVM_ON_WIN32
|
2005-01-09 23:29:00 +00:00
|
|
|
#include "Win32/Signals.inc"
|
2004-12-27 06:16:11 +00:00
|
|
|
#endif
|
2004-08-29 19:22:48 +00:00
|
|
|
|