1 /* Copyright (C) 1992, 95, 96, 97, 98, 2000 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 # error "Never include <bits/stat.h> directly; use <sys/stat.h> instead."
23 /* Versions of the `struct stat' data structure. */
24 #define _STAT_VER_SVR4 1
25 #define _STAT_VER _STAT_VER_SVR4 /* The one defined below. */
27 /* Versions of the `xmknod' interface. */
28 #define _MKNOD_VER_SVR4 1
29 #define _MKNOD_VER _MKNOD_VER_SVR4 /* The bits defined below. */
34 __dev_t st_dev
; /* Device. */
35 unsigned short int __pad1
;
36 #ifndef __USE_FILE_OFFSET64
37 __ino_t st_ino
; /* File serial number. */
39 __ino64_t st_ino
; /* File serial number. */
41 __mode_t st_mode
; /* File mode. */
42 __nlink_t st_nlink
; /* Link count. */
43 __uid_t st_uid
; /* User ID of the file's owner. */
44 __gid_t st_gid
; /* Group ID of the file's group.*/
45 __dev_t st_rdev
; /* Device number, if device. */
46 unsigned short int __pad2
;
47 #ifndef __USE_FILE_OFFSET64
48 __off_t st_size
; /* Size of file, in bytes. */
50 __off64_t st_size
; /* Size of file, in bytes. */
52 unsigned long int st_blksize
; /* Optimal block size for I/O. */
54 #ifndef __USE_FILE_OFFSET64
55 __blkcnt_t st_blocks
; /* Number 512-byte blocks allocated. */
57 __blkcnt64_t st_blocks
; /* Number 512-byte blocks allocated. */
59 __time_t st_atime
; /* Time of last access. */
60 unsigned long int __unused1
;
61 __time_t st_mtime
; /* Time of last modification. */
62 unsigned long int __unused2
;
63 __time_t st_ctime
; /* Time of last status change. */
64 unsigned long int __unused3
;
65 unsigned long int __unused4
;
66 unsigned long int __unused5
;
69 #ifdef __USE_LARGEFILE64
72 __dev_t st_dev
; /* Device. */
73 unsigned short int __pad1
;
75 __ino64_t st_ino
; /* File serial number. */
76 __mode_t st_mode
; /* File mode. */
77 __nlink_t st_nlink
; /* Link count. */
78 __uid_t st_uid
; /* User ID of the file's owner. */
79 __gid_t st_gid
; /* Group ID of the file's group.*/
80 __dev_t st_rdev
; /* Device number, if device. */
81 unsigned short int __pad2
;
82 __off64_t st_size
; /* Size of file, in bytes. */
83 unsigned long int st_blksize
; /* Optimal block size for I/O. */
85 __blkcnt64_t st_blocks
; /* Number 512-byte blocks allocated. */
86 __time_t st_atime
; /* Time of last access. */
87 unsigned long int __unused1
;
88 __time_t st_mtime
; /* Time of last modification. */
89 unsigned long int __unused2
;
90 __time_t st_ctime
; /* Time of last status change. */
91 unsigned long int __unused3
;
92 unsigned long int __unused4
;
93 unsigned long int __unused5
;
97 /* Tell code we have these members. */
98 #define _STATBUF_ST_BLKSIZE
99 #define _STATBUF_ST_RDEV
101 /* Encoding of the file mode. */
103 #define __S_IFMT 0170000 /* These bits determine file type. */
106 #define __S_IFDIR 0040000 /* Directory. */
107 #define __S_IFCHR 0020000 /* Character device. */
108 #define __S_IFBLK 0060000 /* Block device. */
109 #define __S_IFREG 0100000 /* Regular file. */
110 #define __S_IFIFO 0010000 /* FIFO. */
112 /* These don't actually exist on System V, but having them doesn't hurt. */
113 #define __S_IFLNK 0120000 /* Symbolic link. */
114 #define __S_IFSOCK 0140000 /* Socket. */
116 /* POSIX.1b objects. */
117 #define __S_TYPEISMQ(buf) (0)
118 #define __S_TYPEISSEM(buf) (0)
119 #define __S_TYPEISSHM(buf) (0)
121 /* Protection bits. */
123 #define __S_ISUID 04000 /* Set user ID on execution. */
124 #define __S_ISGID 02000 /* Set group ID on execution. */
125 #define __S_ISVTX 01000 /* Save swapped text after use (sticky). */
126 #define __S_IREAD 0400 /* Read by owner. */
127 #define __S_IWRITE 0200 /* Write by owner. */
128 #define __S_IEXEC 0100 /* Execute by owner. */