[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc

2007-06-04 Thread Devang Patel
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.24 -> 1.25 --- Log message: Fix LLVM build on NetBSD. Patch by Neil Booth. --- Diffs of the changes: (+2 -0) Program.inc |2 ++ 1 files changed, 2 insertions(+) Index: llvm/lib/System/Unix/Program.inc diff -u llvm/lib/

[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc

2007-04-23 Thread Reid Spencer
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.23 -> 1.24 --- Log message: Cygwin doesn't have the RSS_LIMIT for get/setrlimit. --- Diffs of the changes: (+2 -0) Program.inc |2 ++ 1 files changed, 2 insertions(+) Index: llvm/lib/System/Unix/Program.inc diff -u llv

[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc

2007-02-16 Thread Anton Korobeynikov
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.22 -> 1.23 --- Log message: Add possibility to set memory limit for binaries run via libSystem. This is especially needed for bugpoint. This partly implements PR688: http://llvm.org/PR688 --- Diffs of the changes: (+30 -0)

[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc

2006-08-22 Thread Reid Spencer
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.21 -> 1.22 --- Log message: For PR797: http://llvm.org/PR797 : Fix a bug in my last patch that botched file redirection by using explicit scoping of if statements. --- Diffs of the changes: (+13 -8) Program.inc | 21 ++

[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc Unix.h

2006-08-20 Thread Reid Spencer
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.20 -> 1.21 Unix.h updated: 1.15 -> 1.16 --- Log message: For PR797: http://llvm.org/PR797 : Remove all exception code from Program.inc and implement its new interface with an ErrMsg string argument. --- Diffs of the changes:

[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc

2006-08-20 Thread Reid Spencer
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.19 -> 1.20 --- Log message: For PR797: http://llvm.org/PR797 : Make sys::Program::ExecuteAndWait not throw exceptions and update any affected code. It now return - to signal that the program couldn't be executed. Only one ca

[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc

2006-07-12 Thread Chris Lattner
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.18 -> 1.19 --- Log message: Turn an if into an else if. --- Diffs of the changes: (+2 -2) Program.inc |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/System/Unix/Program.inc diff -u llvm/lib/S

[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc

2006-06-09 Thread Evan Cheng
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.17 -> 1.18 --- Log message: Don't pull in environ, not always safe. Global variables are bad anyway. Use execve when explicit environment variables ptr is available. Otherwise just use execv. --- Diffs of the changes: (+4 -8)

[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc

2006-06-07 Thread Reid Spencer
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.16 -> 1.17 --- Log message: For PR787: http://llvm.cs.uiuc.edu/PR787 : Provide new llvm::sys::Program facilities for converting the stdout and stdin to binary mode. There is no standard way to do this and the available mechanisms

[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc

2005-12-22 Thread Reid Spencer
Changes in directory llvm/lib/System/Unix: Program.inc updated: 1.15 -> 1.16 --- Log message: For PR351: http://llvm.cs.uiuc.edu/PR351 : * Allow the ExecuteAndWait to return negative values if a signal is detected as the reason for the child termination. This is needed to support bugpoint