Displaying 2 results from an estimated 2 matches for "st_ctimensec".
Did you mean:
st_ctime_nsec
2009 Feb 12
2
[patch 1/3] add protocol extension to ATTR message
...TTR_CTIME;
+ a->ctime = st->st_ctime;
+ a->ext_flags |= SSH2_FXE_EXTATTR_ATIMENSEC;
+ a->atimensec = st->st_atimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_MTIMENSEC;
+ a->mtimensec = st->st_mtimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_CTIMENSEC;
+ a->ctimensec = st->st_ctimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_DEV;
+ a->dev = st->st_dev;
+ a->ext_flags |= SSH2_FXE_EXTATTR_INO;
+ a->ino = st->st_ino;
+ a->ext_flags |= SSH2_FXE_EXTATTR_NLINK;
+ a->nlink = st->st_nlink;
+ if (S_ISCHR(st->st_mode) || S_ISBLK(st->st_mode)) {
+ a->ext_fla...
2023 Jan 13
0
[klibc:master] mips64: Fix struct stat layout
.../
@@ -22,9 +20,14 @@ struct stat {
off_t st_size;
- struct timespec st_atim;
- struct timespec st_mtim;
- struct timespec st_ctim;
+ unsigned int st_atime;
+ unsigned int st_atimensec;
+
+ unsigned int st_mtime;
+ unsigned int st_mtimensec;
+
+ unsigned int st_ctime;
+ unsigned int st_ctimensec;
unsigned int st_blksize;
unsigned int st_pad2;