summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/ia64/bits/kernel_stat.h
blob: 5af7e93a8aecdd906bd90c8223e0e6d74bc5ee14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Ripped from linux/include/asm-ia64/stat.h
 * and renamed 'struct stat' to 'struct kernel_stat' */

#ifndef _ASM_IA64_STAT_H
#define _ASM_IA64_STAT_H

#ifndef _LIBC
#error bits/kernel_stat.h is for internal uClibc use only!
#endif

/*
 * Modified 1998, 1999
 *	David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
 */

struct kernel_stat {
	unsigned long	st_dev;
	unsigned long	st_ino;
	unsigned long	st_nlink;
	unsigned int	st_mode;
	unsigned int	st_uid;
	unsigned int	st_gid;
	unsigned int	__pad0;
	unsigned long	st_rdev;
	unsigned long	st_size;
	struct timespec	st_atim;
	struct timespec	st_mtim;
	struct timespec	st_ctim;
	unsigned long	st_blksize;
	long		st_blocks;
	unsigned long	__unused[3];
};

/* ia64 stat64 is same as stat */
#define kernel_stat64 kernel_stat

#endif /* _ASM_IA64_STAT_H */