Use struct timespec for timestamps in struct stat also if __USE_XOPEN2K8.

POSIX.1-2008 made stat.st_[acm]tim mandatory.
This commit is contained in:
Andreas Schwab 2009-11-23 07:10:27 -08:00 committed by Ulrich Drepper
parent 351fe94770
commit e3611aefb4
6 changed files with 81 additions and 72 deletions

View File

@ -1,3 +1,12 @@
2009-11-23 Andreas Schwab <schwab@redhat.com>
* sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Use struct timespec
for timestamps also if __USE_XOPEN2K8.
* sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
* sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
* sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
* sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
2009-11-22 Ulrich Drepper <drepper@redhat.com> 2009-11-22 Ulrich Drepper <drepper@redhat.com>
* nscd/connections.c (restart): Try harder to re-exec. * nscd/connections.c (restart): Try harder to re-exec.

View File

@ -60,7 +60,7 @@ struct stat
#else #else
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
#endif #endif
#ifdef __USE_MISC #if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -106,7 +106,7 @@ struct stat64
__blksize_t st_blksize; /* Optimal block size for I/O. */ __blksize_t st_blksize; /* Optimal block size for I/O. */
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -116,14 +116,14 @@ struct stat64
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
__ino64_t st_ino; /* File serial number. */ __ino64_t st_ino; /* File serial number. */
}; };
#endif #endif

View File

@ -69,7 +69,7 @@ struct stat
# else # else
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
# endif # endif
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -79,17 +79,17 @@ struct stat
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
# define st_atime st_atim.tv_sec /* Backward compatibility. */ # define st_atime st_atim.tv_sec /* Backward compatibility. */
# define st_mtime st_mtim.tv_sec # define st_mtime st_mtim.tv_sec
# define st_ctime st_ctim.tv_sec # define st_ctime st_ctim.tv_sec
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
unsigned long int __unused4; unsigned long int __unused4;
unsigned long int __unused5; unsigned long int __unused5;
}; };
@ -109,7 +109,7 @@ struct stat64
__off64_t st_size; /* Size of file, in bytes. */ __off64_t st_size; /* Size of file, in bytes. */
__blksize_t st_blksize; /* Optimal block size for I/O. */ __blksize_t st_blksize; /* Optimal block size for I/O. */
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -119,17 +119,17 @@ struct stat64
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
# define st_atime st_atim.tv_sec /* Backward compatibility. */ # define st_atime st_atim.tv_sec /* Backward compatibility. */
# define st_mtime st_mtim.tv_sec # define st_mtime st_mtim.tv_sec
# define st_ctime st_ctim.tv_sec # define st_ctime st_ctim.tv_sec
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
unsigned long int __unused4; unsigned long int __unused4;
unsigned long int __unused5; unsigned long int __unused5;
}; };
@ -163,7 +163,7 @@ struct stat
# else # else
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
# endif # endif
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -173,17 +173,17 @@ struct stat
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
# define st_atime st_atim.tv_sec /* Backward compatibility. */ # define st_atime st_atim.tv_sec /* Backward compatibility. */
# define st_mtime st_mtim.tv_sec # define st_mtime st_mtim.tv_sec
# define st_ctime st_ctim.tv_sec # define st_ctime st_ctim.tv_sec
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
unsigned long int __unused4; unsigned long int __unused4;
unsigned long int __unused5; unsigned long int __unused5;
unsigned long int __unused6; unsigned long int __unused6;
@ -203,7 +203,7 @@ struct stat64
__off64_t st_size; /* Size of file, in bytes. */ __off64_t st_size; /* Size of file, in bytes. */
__blksize_t st_blksize; /* Optimal block size for I/O. */ __blksize_t st_blksize; /* Optimal block size for I/O. */
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -213,17 +213,17 @@ struct stat64
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
# define st_atime st_atim.tv_sec /* Backward compatibility. */ # define st_atime st_atim.tv_sec /* Backward compatibility. */
# define st_mtime st_mtim.tv_sec # define st_mtime st_mtim.tv_sec
# define st_ctime st_ctim.tv_sec # define st_ctime st_ctim.tv_sec
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
unsigned long int __unused4; unsigned long int __unused4;
unsigned long int __unused5; unsigned long int __unused5;
unsigned long int __unused6; unsigned long int __unused6;

View File

@ -56,7 +56,7 @@ struct stat
int pad0; int pad0;
__dev_t st_rdev; /* Device number, if device. */ __dev_t st_rdev; /* Device number, if device. */
__off_t st_size; /* Size of file, in bytes. */ __off_t st_size; /* Size of file, in bytes. */
#ifdef __USE_MISC #if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -109,7 +109,7 @@ struct stat
# else # else
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
# endif # endif
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -119,17 +119,17 @@ struct stat
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
# define st_atime st_atim.tv_sec /* Backward compatibility. */ # define st_atime st_atim.tv_sec /* Backward compatibility. */
# define st_mtime st_mtim.tv_sec # define st_mtime st_mtim.tv_sec
# define st_ctime st_ctim.tv_sec # define st_ctime st_ctim.tv_sec
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
# ifndef __USE_FILE_OFFSET64 # ifndef __USE_FILE_OFFSET64
unsigned long int __unused4; unsigned long int __unused4;
unsigned long int __unused5; unsigned long int __unused5;
@ -153,7 +153,7 @@ struct stat64
int pad0; int pad0;
__dev_t st_rdev; /* Device number, if device. */ __dev_t st_rdev; /* Device number, if device. */
__off_t st_size; /* Size of file, in bytes. */ __off_t st_size; /* Size of file, in bytes. */
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -163,17 +163,17 @@ struct stat64
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
# define st_atime st_atim.tv_sec /* Backward compatibility. */ # define st_atime st_atim.tv_sec /* Backward compatibility. */
# define st_mtime st_mtim.tv_sec # define st_mtime st_mtim.tv_sec
# define st_ctime st_ctim.tv_sec # define st_ctime st_ctim.tv_sec
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
__blksize_t st_blksize; /* Optimal block size for I/O. */ __blksize_t st_blksize; /* Optimal block size for I/O. */
__blkcnt64_t st_blocks; /* Nr. 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Nr. 512-byte blocks allocated. */
long int __unused[3]; long int __unused[3];
@ -195,7 +195,7 @@ struct stat64
__blksize_t st_blksize; /* Optimal block size for I/O. */ __blksize_t st_blksize; /* Optimal block size for I/O. */
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -205,17 +205,17 @@ struct stat64
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
# define st_atime st_atim.tv_sec /* Backward compatibility. */ # define st_atime st_atim.tv_sec /* Backward compatibility. */
# define st_mtime st_mtim.tv_sec # define st_mtime st_mtim.tv_sec
# define st_ctime st_ctim.tv_sec # define st_ctime st_ctim.tv_sec
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
__ino64_t st_ino; /* File serial number. */ __ino64_t st_ino; /* File serial number. */
}; };
# endif # endif

View File

@ -60,7 +60,7 @@ struct stat
#else #else
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
#endif #endif
#ifdef __USE_MISC #if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -89,9 +89,9 @@ struct stat
struct stat64 struct stat64
{ {
__dev_t st_dev; /* Device. */ __dev_t st_dev; /* Device. */
#if __WORDSIZE == 64 # if __WORDSIZE == 64
unsigned short int __pad1; unsigned short int __pad1;
#endif # endif
__ino64_t st_ino; /* File serial number. */ __ino64_t st_ino; /* File serial number. */
__mode_t st_mode; /* File mode. */ __mode_t st_mode; /* File mode. */
__nlink_t st_nlink; /* Link count. */ __nlink_t st_nlink; /* Link count. */
@ -103,7 +103,7 @@ struct stat64
__blksize_t st_blksize; /* Optimal block size for I/O. */ __blksize_t st_blksize; /* Optimal block size for I/O. */
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -113,17 +113,17 @@ struct stat64
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
# define st_atime st_atim.tv_sec /* Backward compatibility. */ # define st_atime st_atim.tv_sec /* Backward compatibility. */
# define st_mtime st_mtim.tv_sec # define st_mtime st_mtim.tv_sec
# define st_ctime st_ctim.tv_sec # define st_ctime st_ctim.tv_sec
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
unsigned long int __unused4; unsigned long int __unused4;
unsigned long int __unused5; unsigned long int __unused5;
}; };

View File

@ -78,7 +78,7 @@ struct stat
#else #else
__blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number 512-byte blocks allocated. */
#endif #endif
#ifdef __USE_MISC #if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -116,30 +116,30 @@ struct stat
struct stat64 struct stat64
{ {
__dev_t st_dev; /* Device. */ __dev_t st_dev; /* Device. */
#if __WORDSIZE == 64 # if __WORDSIZE == 64
__ino64_t st_ino; /* File serial number. */ __ino64_t st_ino; /* File serial number. */
__nlink_t st_nlink; /* Link count. */ __nlink_t st_nlink; /* Link count. */
__mode_t st_mode; /* File mode. */ __mode_t st_mode; /* File mode. */
#else # else
unsigned int __pad1; unsigned int __pad1;
__ino_t __st_ino; /* 32bit file serial number. */ __ino_t __st_ino; /* 32bit file serial number. */
__mode_t st_mode; /* File mode. */ __mode_t st_mode; /* File mode. */
__nlink_t st_nlink; /* Link count. */ __nlink_t st_nlink; /* Link count. */
#endif # endif
__uid_t st_uid; /* User ID of the file's owner. */ __uid_t st_uid; /* User ID of the file's owner. */
__gid_t st_gid; /* Group ID of the file's group.*/ __gid_t st_gid; /* Group ID of the file's group.*/
#if __WORDSIZE == 64 # if __WORDSIZE == 64
int __pad0; int __pad0;
__dev_t st_rdev; /* Device number, if device. */ __dev_t st_rdev; /* Device number, if device. */
__off_t st_size; /* Size of file, in bytes. */ __off_t st_size; /* Size of file, in bytes. */
#else # else
__dev_t st_rdev; /* Device number, if device. */ __dev_t st_rdev; /* Device number, if device. */
unsigned int __pad2; unsigned int __pad2;
__off64_t st_size; /* Size of file, in bytes. */ __off64_t st_size; /* Size of file, in bytes. */
#endif # endif
__blksize_t st_blksize; /* Optimal block size for I/O. */ __blksize_t st_blksize; /* Optimal block size for I/O. */
__blkcnt64_t st_blocks; /* Nr. 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Nr. 512-byte blocks allocated. */
#ifdef __USE_MISC # if defined __USE_MISC || defined __USE_XOPEN2K8
/* Nanosecond resolution timestamps are stored in a format /* Nanosecond resolution timestamps are stored in a format
equivalent to 'struct timespec'. This is the type used equivalent to 'struct timespec'. This is the type used
whenever possible but the Unix namespace rules do not allow the whenever possible but the Unix namespace rules do not allow the
@ -149,22 +149,22 @@ struct stat64
struct timespec st_atim; /* Time of last access. */ struct timespec st_atim; /* Time of last access. */
struct timespec st_mtim; /* Time of last modification. */ struct timespec st_mtim; /* Time of last modification. */
struct timespec st_ctim; /* Time of last status change. */ struct timespec st_ctim; /* Time of last status change. */
# define st_atime st_atim.tv_sec /* Backward compatibility. */ # define st_atime st_atim.tv_sec /* Backward compatibility. */
# define st_mtime st_mtim.tv_sec # define st_mtime st_mtim.tv_sec
# define st_ctime st_ctim.tv_sec # define st_ctime st_ctim.tv_sec
#else # else
__time_t st_atime; /* Time of last access. */ __time_t st_atime; /* Time of last access. */
unsigned long int st_atimensec; /* Nscecs of last access. */ unsigned long int st_atimensec; /* Nscecs of last access. */
__time_t st_mtime; /* Time of last modification. */ __time_t st_mtime; /* Time of last modification. */
unsigned long int st_mtimensec; /* Nsecs of last modification. */ unsigned long int st_mtimensec; /* Nsecs of last modification. */
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
unsigned long int st_ctimensec; /* Nsecs of last status change. */ unsigned long int st_ctimensec; /* Nsecs of last status change. */
#endif # endif
#if __WORDSIZE == 64 # if __WORDSIZE == 64
long int __unused[3]; long int __unused[3];
#else # else
__ino64_t st_ino; /* File serial number. */ __ino64_t st_ino; /* File serial number. */
#endif # endif
}; };
#endif #endif