Synch struct stat64 and stat with current MIPS kernel.

This commit is contained in:
Andreas Jaeger 2000-08-10 12:39:48 +00:00
parent 031a1712e4
commit 2489c7f179

View File

@ -51,11 +51,11 @@ struct stat
long int st_pad2[2]; long int st_pad2[2];
#ifndef __USE_FILE_OFFSET64 #ifndef __USE_FILE_OFFSET64
__off_t st_size; /* Size of file, in bytes. */ __off_t st_size; /* Size of file, in bytes. */
/* SVR4 added this extra long to allow for expansion of off_t. */
long int st_pad3;
#else #else
__off64_t st_size; /* Size of file, in bytes. */ __off64_t st_size; /* Size of file, in bytes. */
#endif #endif
/* SVR4 added this extra long to allow for expansion of off_t. */
long int st_pad3;
/* /*
* Actually this should be timestruc_t st_atime, st_mtime and * Actually this should be timestruc_t st_atime, st_mtime and
* st_ctime but we don't have it under Linux. * st_ctime but we don't have it under Linux.
@ -70,13 +70,10 @@ struct stat
#ifndef __USE_FILE_OFFSET64 #ifndef __USE_FILE_OFFSET64
__blkcnt_t st_blocks; /* Number of 512-byte blocks allocated. */ __blkcnt_t st_blocks; /* Number of 512-byte blocks allocated. */
#else #else
long int st_pad4;
__blkcnt64_t st_blocks; /* Number of 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number of 512-byte blocks allocated. */
#endif #endif
char st_fstype[16]; /* Filesystem type name */ long int st_pad4[14];
long int st_pad4[8];
/* Linux specific fields */
unsigned int st_flags;
unsigned int st_gen;
}; };
#ifdef __USE_LARGEFILE64 #ifdef __USE_LARGEFILE64
@ -92,8 +89,6 @@ struct stat64
unsigned long int st_rdev; /* Device number, if device. */ unsigned long int st_rdev; /* Device number, if device. */
long int st_pad2[2]; long int st_pad2[2];
__off64_t st_size; /* Size of file, in bytes. */ __off64_t st_size; /* Size of file, in bytes. */
/* SVR4 added this extra long to allow for expansion of off_t. */
long int st_pad3;
/* /*
* Actually this should be timestruc_t st_atime, st_mtime and * Actually this should be timestruc_t st_atime, st_mtime and
* st_ctime but we don't have it under Linux. * st_ctime but we don't have it under Linux.
@ -105,12 +100,9 @@ struct stat64
__time_t st_ctime; /* Time of last status change. */ __time_t st_ctime; /* Time of last status change. */
long int __reserved2; long int __reserved2;
__blksize_t st_blksize; /* Optimal block size for I/O. */ __blksize_t st_blksize; /* Optimal block size for I/O. */
long int st_pad3;
__blkcnt64_t st_blocks; /* Number of 512-byte blocks allocated. */ __blkcnt64_t st_blocks; /* Number of 512-byte blocks allocated. */
char st_fstype[16]; /* Filesystem type name */ long int st_pad4[14];
long int st_pad4[8];
/* Linux specific fields */
unsigned int st_flags;
unsigned int st_gen;
}; };
#endif #endif