]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re-core/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/ia64/bits/kernel_stat.h
Update
[l4.git] / l4 / pkg / l4re-core / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / ia64 / bits / kernel_stat.h
1 /* Ripped from linux/include/asm-ia64/stat.h
2  * and renamed 'struct stat' to 'struct kernel_stat' */
3
4 #ifndef _BITS_STAT_STRUCT_H
5 #define _BITS_STAT_STRUCT_H
6
7 /*
8  * Modified 1998, 1999
9  *      David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
10  */
11
12 struct kernel_stat {
13         unsigned long   st_dev;
14         unsigned long   st_ino;
15         unsigned long   st_nlink;
16         unsigned int    st_mode;
17         unsigned int    st_uid;
18         unsigned int    st_gid;
19         unsigned int    __pad0;
20         unsigned long   st_rdev;
21         unsigned long   st_size;
22         struct timespec st_atim;
23         struct timespec st_mtim;
24         struct timespec st_ctim;
25         unsigned long   st_blksize;
26         long            st_blocks;
27         unsigned long   __unused[3];
28 };
29
30 /* ia64 stat64 is same as stat */
31 #define kernel_stat64 kernel_stat
32
33 #endif /* _BITS_STAT_STRUCT_H */