mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-09 21:32:49 +00:00
31513069db
configuration calls. Right now this just contains PreventCoreFiles so that bugpoint can by platform independent. llvm-svn: 16124
28 lines
1.0 KiB
C++
28 lines
1.0 KiB
C++
//===- Linux/SysConfig.cpp - Linux SysConfig Implementation -----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by Reid Spencer and is distributed under the
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file provides the Linux specific implementation of the Signals class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Include the generic unix implementation
|
|
#include "../Unix/SysConfig.cpp"
|
|
|
|
namespace llvm {
|
|
using namespace sys;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
//=== WARNING: Implementation here must contain only Linux specific code
|
|
//=== and must not be generic UNIX code (see ../Unix/Signals.cpp)
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
}
|
|
|
|
// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab
|