Changeset 2060 for trunk/src/emx/include/sys/stat.h
- Timestamp:
- Jun 23, 2005, 8:00:41 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/sys/stat.h
-
Property cvs2svn:cvs-rev
changed from
1.10
to1.11
r2059 r2060 16 16 * notice, this list of conditions and the following disclaimer in the 17 17 * documentation and/or other materials provided with the distribution. 18 * 3. All advertising materials mentioning features or use of this software19 * must display the following acknowledgement:20 * This product includes software developed by the University of21 * California, Berkeley and its contributors.22 18 * 4. Neither the name of the University nor the names of its contributors 23 19 * may be used to endorse or promote products derived from this software … … 37 33 * 38 34 * @(#)stat.h 8.12 (Berkeley) 6/16/95 39 * $FreeBSD: src/sys/sys/stat.h,v 1. 37 2003/05/22 17:07:57 mikeExp $35 * $FreeBSD: src/sys/sys/stat.h,v 1.40 2004/06/17 17:16:52 phk Exp $ 40 36 */ 41 37 42 38 /** @file 43 * FreeBSD 5. 139 * FreeBSD 5.3 44 40 * @changed bird: EMX isms and hid the BSD specific structs and related stuff. 45 41 * @changed bird: No UF_ and SF_ because we ain't got any st_flags. … … 140 136 141 137 struct stat { 142 __ udev_tst_dev; /* inode's device */138 __dev_t st_dev; /* inode's device */ 143 139 ino_t st_ino; /* inode's number */ 144 140 mode_t st_mode; /* inode protection mode */ … … 146 142 uid_t st_uid; /* user ID of the file's owner */ 147 143 gid_t st_gid; /* group ID of the file's group */ 148 __ udev_tst_rdev; /* device type */144 __dev_t st_rdev; /* device type */ 149 145 #if 1 /* bird: emx */ 150 146 time_t st_atime; … … 199 195 #if __BSD_VISIBLE 200 196 struct nstat { 201 __ udev_tst_dev; /* inode's device */197 __dev_t st_dev; /* inode's device */ 202 198 ino_t st_ino; /* inode's number */ 203 199 __uint32_t st_mode; /* inode protection mode */ … … 205 201 uid_t st_uid; /* user ID of the file's owner */ 206 202 gid_t st_gid; /* group ID of the file's group */ 207 __ udev_tst_rdev; /* device type */203 __dev_t st_rdev; /* device type */ 208 204 struct timespec st_atimespec; /* time of last access */ 209 205 struct timespec st_mtimespec; /* time of last data modification */ … … 370 366 371 367 #endif /* !_SYS_STAT_H_ */ 372 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.