Rename __unused struct members to include a namespace
[uclibc-ng.git] / libc / sysdeps / linux / bfin / bits / kernel_stat.h
blob2c2e818d6c9e271e7c93e9d15c90d7516fba0dd9
1 #ifndef _BITS_STAT_STRUCT_H
2 #define _BITS_STAT_STRUCT_H
4 /* This file provides whatever this particular arch's kernel thinks
5 * struct kernel_stat should look like... It turns out each arch has a
6 * different opinion on the subject... */
8 struct kernel_stat {
9 unsigned short st_dev;
10 unsigned short __pad1;
11 unsigned long st_ino;
12 unsigned short st_mode;
13 unsigned short st_nlink;
14 unsigned short st_uid;
15 unsigned short st_gid;
16 unsigned short st_rdev;
17 unsigned short __pad2;
18 unsigned long st_size;
19 unsigned long st_blksize;
20 unsigned long st_blocks;
21 struct timespec st_atim;
22 struct timespec st_mtim;
23 struct timespec st_ctim;
24 unsigned long __uclibc_unused4;
25 unsigned long __uclibc_unused5;
28 struct kernel_stat64 {
29 unsigned short st_dev;
30 unsigned char __pad0[10];
31 #define _HAVE_STAT64___ST_INO
32 unsigned long __st_ino;
33 unsigned int st_mode;
34 unsigned int st_nlink;
35 unsigned long st_uid;
36 unsigned long st_gid;
37 unsigned short st_rdev;
38 unsigned char __pad3[10];
39 long long st_size;
40 unsigned long st_blksize;
41 unsigned long st_blocks; /* Number 512-byte blocks allocated. */
42 unsigned long __pad4; /* future possible st_blocks high bits */
43 struct timespec st_atim;
44 struct timespec st_mtim;
45 struct timespec st_ctim;
46 unsigned long long st_ino;
49 #endif /* _BITS_STAT_STRUCT_H */