diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 00:06:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 00:06:24 +0000 |
commit | 8cac677ca7d2d4d726aae797da45d06eee626ad7 (patch) | |
tree | 921d87fdb55fead0b7b6043c8926513a91615486 /sysdeps/unix/sysv/linux/kernel_stat.h | |
parent | 49e9f864906640e913ad69f98ce6ee24776d5b8d (diff) | |
download | glibc-8cac677ca7d2d4d726aae797da45d06eee626ad7.tar.gz glibc-8cac677ca7d2d4d726aae797da45d06eee626ad7.tar.xz glibc-8cac677ca7d2d4d726aae797da45d06eee626ad7.zip |
Update.
2002-12-30 Jakub Jelinek <jakub@redhat.com> * forward.c: Make all functions available by default again. It caused too much trouble. * internals.h (struct pthread_functions): Rename ptr_pthread_exit and ptr_pthread_attr_init_2_* to ptr___pthread_exit and ptr___pthread_attr_init_2_*. * pthread.c (pthread_functions): Adjust.
Diffstat (limited to 'sysdeps/unix/sysv/linux/kernel_stat.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/kernel_stat.h | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/sysdeps/unix/sysv/linux/kernel_stat.h b/sysdeps/unix/sysv/linux/kernel_stat.h index 7f4f91f43e..4146bb240f 100644 --- a/sysdeps/unix/sysv/linux/kernel_stat.h +++ b/sysdeps/unix/sysv/linux/kernel_stat.h @@ -15,31 +15,19 @@ struct kernel_stat unsigned long int st_size; unsigned long int st_blksize; unsigned long int st_blocks; - unsigned long int st_atime; - unsigned long int __unused1; -#define _HAVE___UNUSED1 - unsigned long int st_mtime; - unsigned long int __unused2; -#define _HAVE___UNUSED2 - unsigned long int st_ctime; - unsigned long int __unused3; -#define _HAVE___UNUSED3 + struct timespec st_atim; + struct timespec st_mtim; + struct timespec st_ctim; unsigned long int __unused4; #define _HAVE___UNUSED4 unsigned long int __unused5; #define _HAVE___UNUSED5 }; -#define _HAVE_STAT___UNUSED1 -#define _HAVE_STAT___UNUSED2 -#define _HAVE_STAT___UNUSED3 #define _HAVE_STAT___UNUSED4 #define _HAVE_STAT___UNUSED5 #define _HAVE_STAT___PAD1 #define _HAVE_STAT___PAD2 -#define _HAVE_STAT64___UNUSED1 -#define _HAVE_STAT64___UNUSED2 -#define _HAVE_STAT64___UNUSED3 #define _HAVE_STAT64___PAD1 #define _HAVE_STAT64___PAD2 #define _HAVE_STAT64___ST_INO |