summaryrefslogtreecommitdiff
path: root/lib/System/Unix/Program.inc
Commit message (Expand)AuthorAge
* Merge System into Support.Michael J. Spencer2010-11-29
* Make FindProgramByName return paths with slashes unmodified on Windows.Mikhail Glushenkov2010-11-02
* Check if ErrMsg is null. This fixes the "not" command.Dan Gohman2010-10-29
* Make Program::Wait differentiate execution failure due to the fileDan Gohman2010-10-29
* Make Program::Wait provide an error message string for errorsDan Gohman2010-10-29
* Revert r117582, which reverted r77396. Searching PATH for a stringDan Gohman2010-10-28
* Revert r77396.Mikhail Glushenkov2010-10-28
* Trailing whitespace.Mikhail Glushenkov2010-10-28
* Add an explicit initialization to work around what appears to be a valgrindDaniel Dunbar2010-09-30
* Rather than using an ifdef on the target to zero out fields,Duncan Sands2010-07-14
* add some triple for minix, patch by Kees van Reeuwijk from PR7582Chris Lattner2010-07-07
* Fix -Wcast-qual warnings.Dan Gohman2010-04-19
* avoid temporary std::string in non posix_spawn path.Chris Lattner2010-04-18
* Eliminate temporary string.Benjamin Kramer2010-04-18
* Properly inherit the environment on darwin where environ is not available for...Benjamin Kramer2010-04-18
* This is horrible. Split the difference, and declare 'environ' on all non-DarwinNick Lewycky2010-04-18
* Revert r101701, Darwin doesn't have 'environ'. Go figure.Nick Lewycky2010-04-18
* Fix linux build. posix_spawn doesn't inherit the environment by default.Nick Lewycky2010-04-18
* make Program::Execute use posix_spawn on systems that support it,Chris Lattner2010-04-18
* improve haiku portability, patch by Paul Davey.Chris Lattner2010-04-10
* don't forget to close a FD on an error condition, found byChris Lattner2010-03-14
* improve support for minix, PR6280, patch byChris Lattner2010-02-12
* Add llvm::Program::ChangeStderrToBinary().Douglas Gregor2010-01-28
* Revert commit 81144, and add a comment. It caused bugpoint timeoutsDuncan Sands2009-11-08
* Use 'waitpid' instead of 'wait'. Basing Program::Wait() on 'wait()' prevents...Ted Kremenek2009-10-22
* Revert "Get rid of GetProcessId in Win32/Program.inc.", this breaksDaniel Dunbar2009-09-22
* Get rid of GetProcessId in Win32/Program.inc.Mikhail Glushenkov2009-09-15
* Check that the 'kill' call succeeded.Mikhail Glushenkov2009-09-09
* This should unbreak the build on 64-bit Linux.Mikhail Glushenkov2009-09-08
* Const-correctness.Mikhail Glushenkov2009-09-08
* Get rid of the Pid_ member in the Program class.Mikhail Glushenkov2009-09-08
* Add a Kill() function to the Program class.Mikhail Glushenkov2009-09-08
* Using a signal handler that does nothing should beDuncan Sands2009-09-07
* Remove some not-really-used variables, as warnedDuncan Sands2009-09-06
* Prune #includes from llvm/Linker.h and llvm/System/Path.h,Chris Lattner2009-08-23
* Update a comment to reflect the current code.Dan Gohman2009-08-05
* Remove needless uses of std::flush in the parent process after aDan Gohman2009-08-05
* Use _exit rather than exit in the child process after a failed exec.Dan Gohman2009-08-05
* Follow Unix behavior and return 127 if the command is not found,Dan Gohman2009-08-04
* When exec() fails, return 127 instead of errno; the parent process has no way toDaniel Dunbar2009-08-04
* Fix a race condition in getting the process exit code on Win32.Daniel Dunbar2009-08-03
* On "Unix", if Program::FindProgramByName is given a name containingDan Gohman2009-07-28
* Fix a fixme; don't take binaries from the working directory.Benjamin Kramer2009-07-28
* Remove duplication in Program::Execute{And,No}Wait.Mikhail Glushenkov2009-07-18
* Trailing whitespace.Mikhail Glushenkov2009-07-17
* Add an ExecuteNoWait interface to support asynchronous process spawning.David Greene2009-07-08
* Make Unix.h:MakeErrMsg separate the prefix and errno string, so we get:Daniel Dunbar2009-04-20
* Fix redirection of stderr in sys::Program::ExecuteAndWait. There was logicMatthijs Kooijman2008-06-12
* Make I/O redirection handling in sys::Program a bit more consistent. NoMatthijs Kooijman2008-06-12
* Unbreak build.Bill Wendling2008-05-29