[llvm-commits] CVS: llvm/lib/System/Program.cpp
Reid Spencer
reid at x10sys.com
Sun Aug 29 12:20:52 PDT 2004
Changes in directory llvm/lib/System:
Program.cpp added (r1.1)
---
Log message:
Initial commit of an platform-indepdendent implementation for the
"Program" operating system concept (find and execute programs).
---
Diffs of the changes: (+29 -0)
Index: llvm/lib/System/Program.cpp
diff -c /dev/null llvm/lib/System/Program.cpp:1.1
*** /dev/null Sun Aug 29 14:20:51 2004
--- llvm/lib/System/Program.cpp Sun Aug 29 14:20:41 2004
***************
*** 0 ****
--- 1,29 ----
+ //===-- Program.cpp - Implement OS Program Concept --------------*- 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 header file implements the operating system Program concept.
+ //
+ //===----------------------------------------------------------------------===//
+
+ #include "llvm/System/Program.h"
+
+ namespace llvm {
+ using namespace sys;
+
+ //===----------------------------------------------------------------------===//
+ //=== WARNING: Implementation here must contain only TRULY operating system
+ //=== independent code.
+ //===----------------------------------------------------------------------===//
+
+ }
+
+ // Include the platform-specific parts of this class.
+ #include "platform/Program.cpp"
+
+ // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab
More information about the llvm-commits
mailing list