hjl / source-git / glibc

Forked from source-git/glibc 3 years ago
Clone

Blame sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h

Packit 6c4009
/* Definition of `struct stat' used in the kernel */
Packit 6c4009
struct kernel_stat
Packit 6c4009
  {
Packit 6c4009
    unsigned int st_dev;
Packit 6c4009
    unsigned long int st_ino;
Packit 6c4009
    unsigned int st_mode;
Packit 6c4009
    short int st_nlink;
Packit 6c4009
    unsigned int st_uid;
Packit 6c4009
    unsigned int st_gid;
Packit 6c4009
    unsigned int st_rdev;
Packit 6c4009
    long int st_size;
Packit 6c4009
    long int st_atime_sec;
Packit 6c4009
    long int st_mtime_sec;
Packit 6c4009
    long int st_ctime_sec;
Packit 6c4009
    long int st_blksize;
Packit 6c4009
    long int st_blocks;
Packit 6c4009
    unsigned long int __glibc_reserved1;
Packit 6c4009
    unsigned long int __glibc_reserved2;
Packit 6c4009
  };
Packit 6c4009
Packit 6c4009
/* Definition of `struct stat64' used in the kernel.  */
Packit 6c4009
struct kernel_stat64
Packit 6c4009
  {
Packit 6c4009
    unsigned long int st_dev;
Packit 6c4009
    unsigned long int st_ino;
Packit 6c4009
    unsigned long int st_nlink;
Packit 6c4009
Packit 6c4009
    unsigned int st_mode;
Packit 6c4009
    unsigned int st_uid;
Packit 6c4009
    unsigned int st_gid;
Packit 6c4009
    unsigned int __pad0;
Packit 6c4009
Packit 6c4009
    unsigned long int st_rdev;
Packit 6c4009
    long int st_size;
Packit 6c4009
    long int st_blksize;
Packit 6c4009
    long int st_blocks;
Packit 6c4009
Packit 6c4009
    unsigned long int st_atime_sec;
Packit 6c4009
    unsigned long int st_atime_nsec;
Packit 6c4009
    unsigned long int st_mtime_sec;
Packit 6c4009
    unsigned long int st_mtime_nsec;
Packit 6c4009
    unsigned long int st_ctime_sec;
Packit 6c4009
    unsigned long int st_ctime_nsec;
Packit 6c4009
    long int __glibc_reserved[3];
Packit 6c4009
  };
Packit 6c4009
Packit 6c4009
#define XSTAT_IS_XSTAT64 1
Packit 6c4009
#define STATFS_IS_STATFS64 0