[BACK]Return to stat.h CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / include / asm-x86_64

File: [Development] / linux-2.4-xfs / include / asm-x86_64 / stat.h (download)

Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN
CVS Tags: HEAD

Initial Import 2.4.24pre2

#ifndef _ASM_X86_64_STAT_H
#define _ASM_X86_64_STAT_H

struct 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;
	long		st_size;
	long		st_blksize;
	long		st_blocks;	/* Number 512-byte blocks allocated. */

	unsigned long	st_atime;
	unsigned long	__reserved0;	/* reserved for atime.nanoseconds */
	unsigned long	st_mtime;
	unsigned long	__reserved1;	/* reserved for atime.nanoseconds */
	unsigned long	st_ctime;
	unsigned long	__reserved2;	/* reserved for atime.nanoseconds */
  	long		__unused[3];
};

#endif