summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/arm/bits/kernel_stat.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-06-11 00:24:20 +0000
committerMike Frysinger <vapier@gentoo.org>2005-06-11 00:24:20 +0000
commitf1d65a96ffdec3446285231339a2fa0d541bacc9 (patch)
treea1ea83b22b3de2a9f3fe8be4e08007c0071292d5 /libc/sysdeps/linux/arm/bits/kernel_stat.h
parent3f788a09d4eb871eeef236b950e06afc4d233e29 (diff)
change the old pads to the new nano sec fields
Diffstat (limited to 'libc/sysdeps/linux/arm/bits/kernel_stat.h')
-rw-r--r--libc/sysdeps/linux/arm/bits/kernel_stat.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/arm/bits/kernel_stat.h b/libc/sysdeps/linux/arm/bits/kernel_stat.h
index bfef64cea..a9f54ca3d 100644
--- a/libc/sysdeps/linux/arm/bits/kernel_stat.h
+++ b/libc/sysdeps/linux/arm/bits/kernel_stat.h
@@ -19,11 +19,11 @@ struct kernel_stat {
unsigned long st_blksize;
unsigned long st_blocks;
unsigned long st_atime;
- unsigned long __unused1;
+ unsigned long st_atime_nsec;
unsigned long st_mtime;
- unsigned long __unused2;
+ unsigned long st_mtime_nsec;
unsigned long st_ctime;
- unsigned long __unused3;
+ unsigned long st_ctime_nsec;
unsigned long __unused4;
unsigned long __unused5;
};
@@ -44,11 +44,11 @@ struct kernel_stat64 {
unsigned long st_blocks; /* Number 512-byte blocks allocated. */
unsigned long __pad4; /* future possible st_blocks high bits */
unsigned long st_atime;
- unsigned long __pad5;
+ unsigned long st_atime_nsec;
unsigned long st_mtime;
- unsigned long __pad6;
+ unsigned long st_mtime_nsec;
unsigned long st_ctime;
- unsigned long __pad7; /* will be high 32 bits of ctime someday */
+ unsigned long st_ctime_nsec;
unsigned long long st_ino;
};