at v2.6.21 69 lines 1.9 kB view raw
1/* 2 * include/asm-xtensa/stat.h 3 * 4 * This file is subject to the terms and conditions of the GNU General Public 5 * License. See the file "COPYING" in the main directory of this archive 6 * for more details. 7 * 8 * Copyright (C) 2001 - 2005 Tensilica Inc. 9 */ 10 11#ifndef _XTENSA_STAT_H 12#define _XTENSA_STAT_H 13 14#include <linux/types.h> 15 16#define STAT_HAVE_NSEC 1 17 18struct stat { 19 unsigned long st_dev; 20 ino_t st_ino; 21 mode_t st_mode; 22 nlink_t st_nlink; 23 uid_t st_uid; 24 gid_t st_gid; 25 unsigned int st_rdev; 26 off_t st_size; 27 unsigned long st_blksize; 28 unsigned long st_blocks; 29 unsigned long st_atime; 30 unsigned long st_atime_nsec; 31 unsigned long st_mtime; 32 unsigned long st_mtime_nsec; 33 unsigned long st_ctime; 34 unsigned long st_ctime_nsec; 35 unsigned long __unused4; 36 unsigned long __unused5; 37}; 38 39/* This matches struct stat64 in glibc-2.3 */ 40 41struct stat64 { 42 unsigned long long st_dev; /* Device */ 43 unsigned long long st_ino; /* File serial number */ 44 unsigned int st_mode; /* File mode. */ 45 unsigned int st_nlink; /* Link count. */ 46 unsigned int st_uid; /* User ID of the file's owner. */ 47 unsigned int st_gid; /* Group ID of the file's group. */ 48 unsigned long long st_rdev; /* Device number, if device. */ 49 long long st_size; /* Size of file, in bytes. */ 50 long st_blksize; /* Optimal block size for I/O. */ 51 unsigned long __unused2; 52#ifdef __XTENSA_EB__ 53 unsigned long __unused3; 54 long st_blocks; /* Number 512-byte blocks allocated. */ 55#else 56 long st_blocks; /* Number 512-byte blocks allocated. */ 57 unsigned long __unused3; 58#endif 59 long st_atime; /* Time of last access. */ 60 unsigned long st_atime_nsec; 61 long st_mtime; /* Time of last modification. */ 62 unsigned long st_mtime_nsec; 63 long st_ctime; /* Time of last status change. */ 64 unsigned long st_ctime_nsec; 65 unsigned long __unused4; 66 unsigned long __unused5; 67}; 68 69#endif /* _XTENSA_STAT_H */