aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Unix
Commit message (Expand)AuthorAgeFilesLines
* remove the last uses of Config/alloca.hChris Lattner2009-08-231-3/+7
* Prune #includes from llvm/Linker.h and llvm/System/Path.h,Chris Lattner2009-08-233-10/+10
* Get rid of a helgrind warning. If this is _actually_ a performance problem,Owen Anderson2009-08-191-3/+3
* Add locking around signal handler registration.Owen Anderson2009-08-171-0/+14
* Fix a bunch of namespace pollution.Dan Gohman2009-08-071-1/+1
* Minor code simplification.Dan Gohman2009-08-051-4/+2
* Update a comment to reflect the current code.Dan Gohman2009-08-051-1/+2
* Remove needless uses of std::flush in the parent process after aDan Gohman2009-08-051-7/+0
* Use _exit rather than exit in the child process after a failed exec.Dan Gohman2009-08-051-3/+7
* Follow Unix behavior and return 127 if the command is not found,Dan Gohman2009-08-041-1/+1
* When exec() fails, return 127 instead of errno; the parent process has no way toDaniel Dunbar2009-08-041-3/+3
* Fix a race condition in getting the process exit code on Win32.Daniel Dunbar2009-08-031-0/+4
* Remove another F_OK.Dan Gohman2009-07-291-1/+1
* On "Unix", if Program::FindProgramByName is given a name containingDan Gohman2009-07-281-1/+1
* It isn't necessary to use F_OK when using R_OK or similar.Dan Gohman2009-07-281-2/+2
* Fix a fixme; don't take binaries from the working directory.Benjamin Kramer2009-07-281-3/+3
* Re-committing r76828 with the JIT memory manager changes now that the buildReid Kleckner2009-07-231-3/+4
* Reverting r76825 and r76828, since they caused clang runtime errors and some ...Reid Kleckner2009-07-231-4/+3
* Make the JIT code emitter properly retry and ask for more memory when it runsReid Kleckner2009-07-231-3/+4
* Remove duplication in Program::Execute{And,No}Wait.Mikhail Glushenkov2009-07-181-87/+29
* Trailing whitespace.Mikhail Glushenkov2009-07-171-15/+15
* Improve sys::Path::makeAbsolute on Win32.Daniel Dunbar2009-07-121-0/+13
* "UNIX paths can contain non-ASCII characters, so Path::isValid() should not r...Chris Lattner2009-07-121-9/+1
* Add an ExecuteNoWait interface to support asynchronous process spawning.David Greene2009-07-081-0/+72
* Add a portable strerror*() wrapper, llvm::sys::StrError(). This includes theJeffrey Yasskin2009-07-011-26/+2
* Fix compilation without pthreads.Owen Anderson2009-06-261-3/+3
* Add a class for supporting platform independent thread-local storage.Owen Anderson2009-06-251-0/+25
* Give RWMutex the SmartRWMutex treatment too.Owen Anderson2009-06-181-6/+6
* Insert a SmartMutex templated class into the class hierarchy, which takes a t...Owen Anderson2009-06-181-5/+5
* Add a portable wrapper for reader-writer locks.Owen Anderson2009-06-161-0/+43
* glibc has two versions of strerror_r, a standards compliant one and a GNUDan Gohman2009-06-151-1/+8
* add a new static method to portably determine whether a patch isChris Lattner2009-06-151-0/+8
* Add support for outputting ANSI colors to raw_fd_ostream.Torok Edwin2009-06-041-0/+59
* Untabification.Bill Wendling2009-05-301-42/+41
* Work around a page size issue on Cygwin.Jay Foad2009-05-231-1/+6
* termios.h contains the winsize structure we need to determine theDouglas Gregor2009-05-181-1/+4
* Add terminal width detection to llvm::sys::Process. This is needed toDouglas Gregor2009-05-111-0/+37
* Make Unix.h:MakeErrMsg separate the prefix and errno string, so we get:Daniel Dunbar2009-04-204-7/+10
* fix PR3965:SIGINT handler not restored after calling ParseAST(),Chris Lattner2009-04-121-1/+2
* Add llvm::sys::getHostTriple and removeDaniel Dunbar2009-03-311-9/+25
* fix a bug Alexei Svitkine pointed out.Chris Lattner2009-03-231-2/+2
* When we restore signal handlers, restore them back to what theyChris Lattner2009-03-231-8/+30
* factorize signal registration, part of PR3848.Chris Lattner2009-03-231-10/+23
* add some explicit llvm:: qualifiers to the unix side, fix problems on the win...Chris Lattner2009-03-081-4/+5
* When a crash signal is delivered do two things: remove all of ourChris Lattner2009-03-071-5/+14
* move some code to gracefully handle the case when a handler crashes.Chris Lattner2009-03-051-4/+6
* Add a new 'AddSignalHandler' function to Signals.h that allowsChris Lattner2009-03-041-94/+68
* Fix main executable path name resolution on FreeBSD, patch by Chris Lattner2009-03-021-1/+60
* If an executable is run through a symlink, dladdr will return theChris Lattner2009-02-191-3/+8
* Fix warning on gcc 4.3.Mikhail Glushenkov2009-02-151-1/+4