Skip to content
  1. Jul 08, 2005
    • Jeff Cohen's avatar
      Make Win32 implementation conform to new paradigm · 0e1d7354
      Jeff Cohen authored
      llvm-svn: 22356
      0e1d7354
    • Reid Spencer's avatar
      Final Changes For PR495: · af48d864
      Reid Spencer authored
      This chagne just renames some sys::Path methods to ensure they are not
      misused. The Path documentation now divides methods into two dimensions:
      Path/Disk and accessor/mutator. Path accessors and mutators only operate
      on the Path object itself without making any disk accesses. Disk accessors
      and mutators will also access or modify the file system. Because of the
      potentially destructive nature of disk mutators, it was decided that all
      such methods should end in the work "Disk" to ensure the user recognizes
      that the change will occur on the file system. This patch makes that
      change. The method name changes are:
      
      makeReadable        -> makeReadableOnDisk
      makeWriteable       -> makeWriteableOnDisk
      makeExecutable      -> makeExecutableOnDisk
      setStatusInfo       -> setStatusInfoOnDisk
      createDirectory     -> createDirectoryOnDisk
      createFile          -> createFileOnDisk
      createTemporaryFile -> createTemporaryFileOnDisk
      destroy             -> eraseFromDisk
      rename              -> renamePathOnDisk
      
      These changes pass the Linux Deja Gnu tests.
      
      llvm-svn: 22354
      af48d864
    • Jeff Cohen's avatar
      Fix VC++ breakage · 215db904
      Jeff Cohen authored
      llvm-svn: 22353
      215db904
    • Reid Spencer's avatar
      Changes to mimic those in Unix/Path.inc in support of PR495. This hasn't · 17c1bd37
      Reid Spencer authored
      been compiled or tested.
      
      llvm-svn: 22350
      17c1bd37
    • Reid Spencer's avatar
      For PR495: · c9c0473f
      Reid Spencer authored
      Get rid of the difference between file paths and directory paths. The Path
      class now simply stores a path that can refer to either a file or a
      directory. This required various changes in the implementation and interface
      of the class with the corresponding impact to its users. Doxygen comments were
      also updated to reflect these changes. Interface changes are:
      
      appendDirectory -> appendComponent
      appendFile -> appendComponent
      elideDirectory -> eraseComponent
      elideFile -> eraseComponent
      elideSuffix -> eraseSuffix
      renameFile -> rename
      setDirectory -> set
      setFile -> set
      
      Changes pass Dejagnu and llvm-test/SingleSource tests.
      
      llvm-svn: 22349
      c9c0473f
  2. Jul 07, 2005
    • Reid Spencer's avatar
      For PR495: · 5b891e98
      Reid Spencer authored
      Change interface to Path class:
      readable -> canRead
      writable -> canWrite
      executable -> canExecute
      
      More (incremental) changes coming to close 495.
      
      llvm-svn: 22345
      5b891e98
  3. May 06, 2005
  4. Apr 22, 2005
  5. Apr 21, 2005
  6. Apr 11, 2005
  7. Feb 20, 2005
  8. Feb 19, 2005
  9. Feb 18, 2005
  10. Feb 16, 2005
  11. Jan 27, 2005
  12. Jan 22, 2005
  13. Jan 14, 2005
  14. Jan 10, 2005
  15. Jan 08, 2005
  16. Jan 01, 2005
  17. Dec 31, 2004
  18. Dec 30, 2004
  19. Dec 27, 2004
    • Reid Spencer's avatar
      For PR351: · cf15b874
      Reid Spencer authored
      * Move implementation of sys::PreventCoreFiles function to this file from
        the now defunct SysConfig abstraction.
      
      llvm-svn: 19159
      cf15b874
    • Reid Spencer's avatar
      For PR351: · 0d1ad6ac
      Reid Spencer authored
      SysConf abstraction was pointless because it had a single function in it that
      pertained only to the current process. So merge it into the Process abstraction
      and remove the files completely.
      
      llvm-svn: 19149
      0d1ad6ac
  20. Dec 25, 2004
  21. Dec 24, 2004
  22. Dec 23, 2004
  23. Dec 20, 2004
    • Jeff Cohen's avatar
      Keep up with lib/System changes · 7ae0bc71
      Jeff Cohen authored
      llvm-svn: 19057
      7ae0bc71
    • Reid Spencer's avatar
      For PR351: · ac38f3a0
      Reid Spencer authored
      * Implement GetMallocUsage to get usage of malloc heap
      * Implement GetMemoryUsage to get total memory usage of process
      * Implement GetTimeUsage to get elapsed/user/system time
      
      llvm-svn: 19055
      ac38f3a0
  24. Dec 18, 2004
  25. Dec 16, 2004
Loading