[root] / trunk / core / base / src / TSystemFile.cxx Repository:
ViewVC logotype

Log of /trunk/core/base/src/TSystemFile.cxx

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 35922 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 30 14:43:08 2010 UTC (4 years, 3 months ago) by brun
File length: 5187 byte(s)
Diff to previous 35202
use snprintf

Revision 35202 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 8 13:12:42 2010 UTC (4 years, 4 months ago) by rdm
File length: 5132 byte(s)
Diff to previous 22961
fix issues flagged as critical by coverity.

Revision 22961 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 3 13:32:57 2008 UTC (6 years, 9 months ago) by rdm
File length: 5058 byte(s)
Diff to previous 20877
move the directories:
  base clib cont meta metautils newdelete pcre rint thread unix utils
  winnt zip
under the new core meta directory.

Revision 20877 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:17:07 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/base/src/TSystemFile.cxx
File length: 5058 byte(s)
Diff to previous 19826
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/base/src/TSystemFile.cxx
File length: 5058 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/base/src/TSystemFile.cxx
File length: 5110 byte(s)
Diff to previous 15251
remove :$ from tag line

Revision 15251 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed May 31 07:48:56 2006 UTC (8 years, 7 months ago) by brun
Original Path: trunk/base/src/TSystemFile.cxx
File length: 5120 byte(s)
Diff to previous 11907
Fix coding conventions violations

Revision 11907 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon May 30 10:21:14 2005 UTC (9 years, 7 months ago) by rdm
Original Path: trunk/base/src/TSystemFile.cxx
File length: 5087 byte(s)
Diff to previous 10320
From Valeriy:
- TSystemFile. New methods Rename, Delete, Copy, Move  added.
  These methods can be invoked via ContextMenu  (press right mouse button)
  in ROOT browser.
- TRootBrowser. More improvments in browsing history navigation added.

Revision 10320 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Oct 15 17:09:52 2004 UTC (10 years, 3 months ago) by rdm
Original Path: trunk/base/src/TSystemFile.cxx
File length: 3237 byte(s)
Diff to previous 7810
remove special ifdef's for old Win32 case.

Revision 7810 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Dec 30 13:16:51 2003 UTC (11 years ago) by brun
Original Path: trunk/base/src/TSystemFile.cxx
File length: 3407 byte(s)
Diff to previous 6806
Mega patch to add support for large files (bigger than 2 GBytes)
----------------------------------------------------------------

  ==========>NEW VERSION 4.00/00 <===========

Because this new version has a considerable number of changes,
and new important additions by Philippe are scheduled for the coming days
we are starting a new major version 4.
  -Support for large files
  -Automatic schema evolution for foreign classes
  -New data type Double32_t

Large files are currently tested only under Linux with gcc3.2.
Support for other systems will be gradually added in the coming days.
By default under Linux, files are created with the option LARGEFILE.
Note that when creating a Tree, the default maximum size for a Tree
is set to 1.9 GBytes. You can change this default value by calling
  TTree::SetMaxTreeSize(Long64_t maxsize)

The implementation of this new feature has required changes in many places.
The files produced by this new version can still be read by old ROOT versions
if their size if smaller than 2 GBytes. And obviously, the new version
can digest old ROOT files.

WARNING: note the following backward incompatibility:
 -TSystem::GetPathInfo has a new signature: (also TUnixSystem, TWinNTSystem, etc)
  old: GetPathInfo(const char *path, Long_t *id, Long_t *size, Long_t *flags, Long_t *modtime);
  new: GetPathInfo(const char *path, Long_t *id, Long64_t *size, Long_t *flags, Long_t *modtime);

 -TFile::SysSeek and TFile::SysStat have a new signature (also TNetFile, TWebFile, etc)
  old:  Int_t    SysSeek(Int_t fd, Long_t offset, Int_t whence);
        Int_t    SysStat(Int_t fd, Long_t *id, Long_t *size, Long_t *flags, Long_t *modtime);
  new:  Long64_t SysSeek(Int_t fd, Long64_t offset, Int_t whence);
        Int_t    SysStat(Int_t fd, Long_t *id, Long64_t *size, Long_t *flags, Long_t *modtime);

 -TTree::SetMaxTreeSize has a new signature:
  old:  void TTree::SetMaxTreeSize(Int_t maxsize)
  new:  void TTree::SetMaxTreeSize(Long64_t maxsize)

  All references to Seek_t have been replaced by Long64_t.

Revision 6806 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 1 11:39:45 2003 UTC (11 years, 6 months ago) by rdm
Original Path: trunk/base/src/TSystemFile.cxx
File length: 3395 byte(s)
Diff to previous 3315
added method IsDirectory() in TSystemFile. By Valeriy.

Revision 3315 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Nov 28 15:58:13 2001 UTC (13 years, 1 month ago) by rdm
Original Path: trunk/base/src/TSystemFile.cxx
File length: 3025 byte(s)
Diff to previous 1776
added ifdef's for win32gdk case.

Revision 1776 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Mar 8 20:16:28 2001 UTC (13 years, 10 months ago) by rdm
Original Path: trunk/base/src/TSystemFile.cxx
File length: 2951 byte(s)
Diff to previous 3
root.mimes in now in $ROOTSYS/etc and not anymore in $ROOTSYS/icons.

Revision 3 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: trunk/base/src/TSystemFile.cxx
File length: 2894 byte(s)
Copied from: branches/rdm/base/src/TSystemFile.cxx revision 2
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.

Revision 2 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: branches/rdm/base/src/TSystemFile.cxx
File length: 2894 byte(s)
Initial import of ROOT into CVS

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9