OSDN Git Service

add support for passing nano seconds (if arch supports it)
authorMike Frysinger <vapier@gentoo.org>
Fri, 15 Jul 2005 22:58:11 +0000 (22:58 -0000)
committerMike Frysinger <vapier@gentoo.org>
Fri, 15 Jul 2005 22:58:11 +0000 (22:58 -0000)
libc/sysdeps/linux/common/xstatconv.c

index fc25c43..60ec25b 100644 (file)
@@ -48,9 +48,14 @@ void __xstat_conv(struct kernel_stat *kbuf, struct stat *buf)
     buf->st_atime = kbuf->st_atime;
     buf->st_mtime = kbuf->st_mtime;
     buf->st_ctime = kbuf->st_ctime;
+#ifdef STAT_HAVE_NSEC
+       buf->st_atime_nsec = kbuf->st_atime_nsec;
+       buf->st_mtime_nsec = kbuf->st_mtime_nsec;
+       buf->st_ctime_nsec = kbuf->st_ctime_nsec;
+#endif
 }
 
-#if defined __UCLIBC_HAS_LFS__
+ #if defined(__UCLIBC_HAS_LFS__)
 void __xstat64_conv(struct kernel_stat64 *kbuf, struct stat64 *buf)
 {
     /* Convert to current kernel version of `struct stat64'.  */
@@ -70,6 +75,10 @@ void __xstat64_conv(struct kernel_stat64 *kbuf, struct stat64 *buf)
     buf->st_atime = kbuf->st_atime;
     buf->st_mtime = kbuf->st_mtime;
     buf->st_ctime = kbuf->st_ctime;
+#ifdef STAT_HAVE_NSEC
+       buf->st_atime_nsec = kbuf->st_atime_nsec;
+       buf->st_mtime_nsec = kbuf->st_mtime_nsec;
+       buf->st_ctime_nsec = kbuf->st_ctime_nsec;
+#endif
 }
 #endif
-