mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Relocate alpha from ports to libc
Also fixed the following whitespace nits to satisfy the push: sysdeps/alpha/alphaev6/memset.S:142: space before tab in indent. sysdeps/alpha/configure:1: new blank line at EOF. sysdeps/alpha/fpu/e_sqrt.c:126: space before tab in indent. sysdeps/alpha/preconfigure:1: new blank line at EOF. sysdeps/unix/sysv/linux/alpha/syscalls.list:1: new blank line at EOF.
This commit is contained in:
88
sysdeps/unix/sysv/linux/alpha/kernel_stat.h
Normal file
88
sysdeps/unix/sysv/linux/alpha/kernel_stat.h
Normal file
@ -0,0 +1,88 @@
|
||||
/* Definition of `struct stat' used in the kernel. */
|
||||
struct kernel_stat
|
||||
{
|
||||
unsigned int st_dev;
|
||||
unsigned int st_ino;
|
||||
unsigned int st_mode;
|
||||
unsigned int st_nlink;
|
||||
unsigned int st_uid;
|
||||
unsigned int st_gid;
|
||||
unsigned int st_rdev;
|
||||
long int st_size;
|
||||
unsigned long int st_atime;
|
||||
unsigned long int st_mtime;
|
||||
unsigned long int st_ctime;
|
||||
unsigned int st_blksize;
|
||||
int st_blocks;
|
||||
unsigned int st_flags;
|
||||
unsigned int st_gen;
|
||||
};
|
||||
|
||||
/* Definition of `struct stat64' used in the kernel. */
|
||||
struct kernel_stat64
|
||||
{
|
||||
unsigned long st_dev;
|
||||
unsigned long st_ino;
|
||||
unsigned long st_rdev;
|
||||
long st_size;
|
||||
unsigned long st_blocks;
|
||||
|
||||
unsigned int st_mode;
|
||||
unsigned int st_uid;
|
||||
unsigned int st_gid;
|
||||
unsigned int st_blksize;
|
||||
unsigned int st_nlink;
|
||||
unsigned int __pad0;
|
||||
|
||||
unsigned long st_atime;
|
||||
unsigned long st_atimensec;
|
||||
unsigned long st_mtime;
|
||||
unsigned long st_mtimensec;
|
||||
unsigned long st_ctime;
|
||||
unsigned long st_ctimensec;
|
||||
long __glibc_reserved[3];
|
||||
};
|
||||
|
||||
/* Definition of `struct stat' used by glibc 2.0. */
|
||||
struct glibc2_stat
|
||||
{
|
||||
__dev_t st_dev;
|
||||
__ino_t st_ino;
|
||||
__mode_t st_mode;
|
||||
__nlink_t st_nlink;
|
||||
__uid_t st_uid;
|
||||
__gid_t st_gid;
|
||||
__dev_t st_rdev;
|
||||
__off_t st_size;
|
||||
__time_t st_atime;
|
||||
__time_t st_mtime;
|
||||
__time_t st_ctime;
|
||||
unsigned int st_blksize;
|
||||
int st_blocks;
|
||||
unsigned int st_flags;
|
||||
unsigned int st_gen;
|
||||
};
|
||||
|
||||
/* Definition of `struct stat' used by glibc 2.1. */
|
||||
struct glibc21_stat
|
||||
{
|
||||
__dev_t st_dev;
|
||||
__ino64_t st_ino;
|
||||
__mode_t st_mode;
|
||||
__nlink_t st_nlink;
|
||||
__uid_t st_uid;
|
||||
__gid_t st_gid;
|
||||
__dev_t st_rdev;
|
||||
__off_t st_size;
|
||||
__time_t st_atime;
|
||||
__time_t st_mtime;
|
||||
__time_t st_ctime;
|
||||
__blkcnt64_t st_blocks;
|
||||
__blksize_t st_blksize;
|
||||
unsigned int st_flags;
|
||||
unsigned int st_gen;
|
||||
int __pad3;
|
||||
long __glibc_reserved[4];
|
||||
};
|
||||
|
||||
#define XSTAT_IS_XSTAT64 1
|
Reference in New Issue
Block a user