aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System
Commit message (Expand)AuthorAgeFilesLines
* 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-032-5/+25
* Empty arguments need to be quoted on Win32.Daniel Dunbar2009-08-021-3/+9
* eXtensible Systems doesn't exist any more and Reid donated this to theChris Lattner2009-08-011-6/+0
* 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
* CMake: make sure that the *.inc files for libSystem show up in the resulting Douglas Gregor2009-07-271-0/+23
* Don't use llvm_report_error in libSystem, this is a layering violation.Daniel Dunbar2009-07-261-2/+2
* Re-committing r76828 with the JIT memory manager changes now that the buildReid Kleckner2009-07-232-6/+8
* Reverting r76825 and r76828, since they caused clang runtime errors and some ...Reid Kleckner2009-07-232-8/+6
* Make the JIT code emitter properly retry and ask for more memory when it runsReid Kleckner2009-07-232-6/+8
* Remove duplication in Program::Execute{And,No}Wait.Mikhail Glushenkov2009-07-183-276/+91
* Trailing whitespace.Mikhail Glushenkov2009-07-171-15/+15
* Lexically order files in CMakeLists.txt files.Ted Kremenek2009-07-151-1/+1
* Use llvm_report_error, not llvm_unreachable.Daniel Dunbar2009-07-121-2/+2
* Improve sys::Path::makeAbsolute on Win32.Daniel Dunbar2009-07-123-12/+37
* "UNIX paths can contain non-ASCII characters, so Path::isValid() should not r...Chris Lattner2009-07-121-9/+1
* eraseFromDisk no longer throws.Chris Lattner2009-07-091-4/+1
* Add an ExecuteNoWait interface to support asynchronous process spawning.David Greene2009-07-082-0/+237
* remove two methods that no longer exist.Chris Lattner2009-07-081-24/+0
* more getting windows to build.Chris Lattner2009-07-081-14/+7
* hopefully fix the build on windows.Chris Lattner2009-07-081-0/+1
* Eliminate the static constructors and locks from DynamicLibrary.cpp.Chris Lattner2009-07-071-26/+27
* remove dead code, noone creates instances of "DynamicLibrary", so the ctor an...Chris Lattner2009-07-071-10/+1
* we don't use libtool anymore, update comments.Chris Lattner2009-07-071-12/+2
* No need to double-include config.hOwen Anderson2009-07-061-1/+1
* We need to include config.h to get the proper setting to LLVM_MULTITHREADED.Owen Anderson2009-07-061-0/+1
* improve portability to windows, patch by Xerces Ranby!Chris Lattner2009-07-061-1/+1
* Oops, I #included errno.h from inside the llvm::sys namespace.Jeffrey Yasskin2009-07-061-1/+4
* Fix windows build, patch by Howard Su.Duncan Sands2009-07-021-2/+2
* Add a portable strerror*() wrapper, llvm::sys::StrError(). This includes theJeffrey Yasskin2009-07-013-26/+74
* Try again at making this work on OpenBSD.Owen Anderson2009-07-011-1/+1
* Fix the build on OpenBSD.Owen Anderson2009-07-011-1/+1
* Fixed assert that checks return value of TlsSetValue.Oscar Fuentes2009-06-301-1/+1
* Fix compilation without pthreads.Owen Anderson2009-06-261-3/+3
* Fix unused variable warnings.Daniel Dunbar2009-06-261-0/+3
* Fix error in the Win32 implementation pointed out by Howard Su.Owen Anderson2009-06-261-1/+1
* Add support for const thread locals.Owen Anderson2009-06-252-6/+6
* Fix typo in assertion.Owen Anderson2009-06-251-1/+1
* Add a configure test for pthread_getspecific, and use it when building Thread...Owen Anderson2009-06-251-1/+1
* Update cmake build files.Owen Anderson2009-06-251-0/+1
* Add a class for supporting platform independent thread-local storage.Owen Anderson2009-06-253-0/+151