aboutsummaryrefslogtreecommitdiff
path: root/lib/System/Unix
AgeCommit message (Expand)Author
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-18Added "GetCurrentDirectory()" to sys::Path.Ted Kremenek
2007-12-18Added "isDirectory" method to llvm::sys::Path.Ted Kremenek
2007-12-08Remove dead file and directory.Chris Lattner
2007-09-14Remove spurious consts. This fixes warnings with compilers thatDan Gohman
2007-09-07Add lengthof and endof templates that hide a lot of sizeof computations.Owen Anderson
2007-07-06Solaris 2.x does not have RLIMIT_RSS, check for this symbol (analog NetBSD be...Gabor Greif
2007-07-05Here is the bulk of the sanitizing.Gabor Greif
2007-06-04Fix LLVM build on NetBSD. Patch by Neil Booth.Devang Patel
2007-05-11Fix a bug where the bcreader could crash on .bc files that were an exactChris Lattner
2007-05-06pull some win32 code into common code, add bitcode identification support.Chris Lattner
2007-04-23Cygwin doesn't have the RSS_LIMIT for get/setrlimit.Reid Spencer
2007-04-07For PR1291:Reid Spencer
2007-03-29Use the stat information in the Path object, if it is already obtained. ThisReid Spencer
2007-03-29For PR789:Reid Spencer
2007-03-29Add a uniqueID field to the FileStatus structure for Paths. This will mapReid Spencer
2007-03-29For PR789:Reid Spencer
2007-02-16Add possibility to set memory limit for binaries run via libSystem. ThisAnton Korobeynikov
2006-12-05Eliminate "control reaches end of non-void function" warnings.Reid Spencer
2006-09-14Use new config.h macroChris Lattner
2006-09-14On Mac OS/X, make Process::PreventCoreFiles disable crash reporter forChris Lattner
2006-08-25For PR797:Reid Spencer
2006-08-23For PR797:Reid Spencer
2006-08-23For PR797:Reid Spencer
2006-08-23For PR797:Reid Spencer
2006-08-23For PR797:Reid Spencer
2006-08-22For PR797:Reid Spencer
2006-08-22Make the sys::Path::GetTemporaryDirectory method not throw exceptions andReid Spencer
2006-08-22Don't throw needlessly. Failure of gettimeofday is *very* unlinkely soReid Spencer
2006-08-22For PR797:Reid Spencer
2006-08-22For PR797:Reid Spencer
2006-08-22Make an error message a little more intelligible.Reid Spencer
2006-08-21For PR797:Reid Spencer
2006-08-21For PR797:Reid Spencer
2006-08-07Remove extraneous #include.Reid Spencer
2006-08-07Make the removal of files use Path::eraseFromDisk just like it does forReid Spencer
2006-08-07Add a note about how the "isFile" check in Path::eraseFromDisk preventsReid Spencer
2006-08-01Remove some now-dead methods. Use getFileStatus instead.Chris Lattner
2006-08-01Use getFileStatus instead of Path::isDirectory().Chris Lattner
2006-08-01elimiante some syscallsChris Lattner
2006-07-28Modify setStatusInfoOnDisk to not throw an exception.Chris Lattner
2006-07-28Modify Path::eraseFromDisk to not throw an exception.Chris Lattner
2006-07-28Change Path::getStatusInfo to return a boolean and error string on an errorChris Lattner
2006-07-18simple optimization: don't bother calling "exists" (which calls the syscallChris Lattner
2006-07-18Remove a dead conditional: info_ can only be allocated if FD is good. ImproveChris Lattner
2006-07-18The only entry in the stat buf this code cares about is the size. Keep justChris Lattner
2006-07-18Reduce code in the error path by only allocating info_ if everything looksChris Lattner
2006-07-18Unindent some codeChris Lattner
2006-07-12Turn an if into an else if.Chris Lattner
2006-07-07no need to do a stat then an lstat. lstat will tell us if normal files don't...Chris Lattner