Changeset 2579 for branches/libc-0.6
- Timestamp:
- Mar 8, 2006, 1:03:46 AM (19 years ago)
- Location:
- branches/libc-0.6/src/emx
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/emx/ChangeLog.LIBC
r2577 r2579 5 5 2006-03-07: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 6 - libc: 7 o #49: Fixed stat backend so ctime is set, and made fstat, lstat and stat convert birthtime too. 7 8 o #61: Fixed incorrect ENOENT errno on symlink when it should return EEXIST. 8 9 -
branches/libc-0.6/src/emx/src/lib/io/fstat.c
r1519 r2579 21 21 _loc2gmt (&buffer->st_mtime, -1); 22 22 _loc2gmt (&buffer->st_ctime, -1); 23 _loc2gmt (&buffer->st_birthtime, -1); 23 24 } 24 25 else -
branches/libc-0.6/src/emx/src/lib/io/lstat.c
r2254 r2579 50 50 _loc2gmt(&buffer->st_mtime, -1); 51 51 _loc2gmt(&buffer->st_ctime, -1); 52 _loc2gmt(&buffer->st_birthtime, -1); 52 53 LIBCLOG_RETURN_INT(0); 53 54 } -
branches/libc-0.6/src/emx/src/lib/io/stat.c
r2254 r2579 21 21 _loc2gmt(&buffer->st_mtime, -1); 22 22 _loc2gmt(&buffer->st_ctime, -1); 23 _loc2gmt(&buffer->st_birthtime, -1); 23 24 LIBCLOG_RETURN_INT(rc); 24 25 } -
branches/libc-0.6/src/emx/src/lib/sys/b_fsNativeFileStat.c
r2522 r2579 138 138 */ 139 139 /* Times: FAT might not return create and access time. */ 140 pStat->st_mtime = pStat->st_ mtime = _sys_p2t(info.fsts4.ftimeLastWrite, info.fsts4.fdateLastWrite);140 pStat->st_mtime = pStat->st_ctime = _sys_p2t(info.fsts4.ftimeLastWrite, info.fsts4.fdateLastWrite); 141 141 if ( FTIMEZEROP(info.fsts4.ftimeCreation) 142 142 && FDATEZEROP(info.fsts4.fdateCreation))
Note:
See TracChangeset
for help on using the changeset viewer.