LLVM API Documentation
00001 //===- Signals.cpp - Signal Handling support --------------------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file was developed by the LLVM research group and is distributed under 00006 // the University of Illinois Open Source License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file defines some helpful functions for dealing with the possibility of 00011 // Unix signals occuring while your program is running. 00012 // 00013 //===----------------------------------------------------------------------===// 00014 00015 #include "llvm/System/Signals.h" 00016 00017 namespace llvm { 00018 using namespace sys; 00019 00020 //===----------------------------------------------------------------------===// 00021 //=== WARNING: Implementation here must contain only TRULY operating system 00022 //=== independent code. 00023 //===----------------------------------------------------------------------===// 00024 00025 } 00026 00027 // Include the platform-specific parts of this class. 00028 #include "platform/Signals.cpp" 00029 00030 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab