diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2011-07-03 10:08:09 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2011-07-03 10:08:09 (GMT) |
commit | 728a7cde00d367beb2873570be4a12baae753fbf (patch) | |
tree | 5b010ce6874168b8e3ed497b703a17b8df01124e | |
parent | 59f60c354a264bd149bbe3248982f82c6ddd165a (diff) | |
parent | c1a48e4df9bd8dcf675799dc7e9fbf4881f236a0 (diff) | |
download | tcl-728a7cde00d367beb2873570be4a12baae753fbf.zip tcl-728a7cde00d367beb2873570be4a12baae753fbf.tar.gz tcl-728a7cde00d367beb2873570be4a12baae753fbf.tar.bz2 |
Corrected statements about ctime field of 'struct stat'; that was always the
time of the last metadata change, not the time of creation.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | doc/FileSystem.3 | 12 |
2 files changed, 12 insertions, 6 deletions
@@ -1,3 +1,9 @@ +2011-07-03 Donal K. Fellows <dkf@users.sf.net> + + * doc/FileSystem.3: Corrected statements about ctime field of 'struct + stat'; that was always the time of the last metadata change, not the + time of creation. + 2011-07-02 Kevin B. Kenny <kennykb@acm.org> * generic/tclStrToD.c: diff --git a/doc/FileSystem.3 b/doc/FileSystem.3 index 9c3f088..32407d8 100644 --- a/doc/FileSystem.3 +++ b/doc/FileSystem.3 @@ -443,8 +443,8 @@ directories named in the path leading to the file. The stat structure includes info regarding device, inode (always 0 on Windows), privilege mode, nlink (always 1 on Windows), user id (always 0 on Windows), group id (always 0 on Windows), rdev (same as device on -Windows), size, last access time, last modification time, and creation -time. +Windows), size, last access time, last modification time, and +last metadata change time. .PP If \fIpath\fR exists, \fBTcl_FSLstat\fR returns 0 and the stat structure is filled with data. Otherwise, -1 is returned, and no stat info is @@ -501,8 +501,8 @@ directories named in the path leading to the file. The stat structure includes info regarding device, inode (always 0 on Windows), privilege mode, nlink (always 1 on Windows), user id (always 0 on Windows), group id (always 0 on Windows), rdev (same as device on -Windows), size, last access time, last modification time, and creation -time. +Windows), size, last access time, last modification time, and +last metadata change time. .PP If \fIpath\fR exists, \fBTcl_FSStat\fR returns 0 and the stat structure is filled with data. Otherwise, -1 is returned, and no stat info is @@ -1076,8 +1076,8 @@ to all directories named in the path leading to the file. The stat structure includes info regarding device, inode (always 0 on Windows), privilege mode, nlink (always 1 on Windows), user id (always 0 on Windows), group id (always 0 on Windows), rdev (same as device on -Windows), size, last access time, last modification time, and creation -time. +Windows), size, last access time, last modification time, and +last metadata change time. .PP If the file represented by \fIpathPtr\fR exists, the \fBTcl_FSStatProc\fR returns 0 and the stat structure is filled with |