Changeset 77754 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Mar 18, 2019 12:23:18 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129415
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/fs2-posix.cpp
r76553 r77754 65 65 RTTimeSpecAddNano(RTTimeSpecSetSeconds(&pObjInfo->ModificationTime, pStat->st_mtime), pStat->st_mtimensec); 66 66 RTTimeSpecAddNano(RTTimeSpecSetSeconds(&pObjInfo->ChangeTime, pStat->st_ctime), pStat->st_ctimensec); 67 # ifdef HAVE_STAT_BIRTHTIME67 # ifdef HAVE_STAT_BIRTHTIME 68 68 RTTimeSpecAddNano(RTTimeSpecSetSeconds(&pObjInfo->BirthTime, pStat->st_birthtime), pStat->st_birthtimensec); 69 # endif69 # endif 70 70 71 71 #elif defined(HAVE_STAT_TIMESPEC_BRIEF) … … 96 96 pObjInfo->BirthTime = pObjInfo->ChangeTime; 97 97 #endif 98 99 98 100 99 /* the file mode */
Note:
See TracChangeset
for help on using the changeset viewer.