diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-27 06:15:14 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-27 06:15:14 +0000 |
commit | 0d1ad6ac3479ec6c3cd22471a27af588db151fb3 (patch) | |
tree | fa2d749c6a2b0b211689853be913cda8ec2bed24 /llvm/lib/System/Interix/SysConfig.cpp | |
parent | b668158b7c5ffe24f7341f5dde0d275d31661e18 (diff) | |
download | bcm5719-llvm-0d1ad6ac3479ec6c3cd22471a27af588db151fb3.tar.gz bcm5719-llvm-0d1ad6ac3479ec6c3cd22471a27af588db151fb3.zip |
For PR351:
SysConf abstraction was pointless because it had a single function in it that
pertained only to the current process. So merge it into the Process abstraction
and remove the files completely.
llvm-svn: 19149
Diffstat (limited to 'llvm/lib/System/Interix/SysConfig.cpp')
-rw-r--r-- | llvm/lib/System/Interix/SysConfig.cpp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/llvm/lib/System/Interix/SysConfig.cpp b/llvm/lib/System/Interix/SysConfig.cpp deleted file mode 100644 index a88e344a5e0..00000000000 --- a/llvm/lib/System/Interix/SysConfig.cpp +++ /dev/null @@ -1,27 +0,0 @@ -//===- Interix/SysConfig.cpp - Interix 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 Interix 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 Interix specific code -//=== and must not be generic UNIX code (see ../Unix/Signals.cpp) -//===----------------------------------------------------------------------===// - -} - -// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab |