]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
9bccf70c | 2 | * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved. |
1c79356b A |
3 | * |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
43866e37 | 6 | * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. |
1c79356b | 7 | * |
43866e37 A |
8 | * This file contains Original Code and/or Modifications of Original Code |
9 | * as defined in and that are subject to the Apple Public Source License | |
10 | * Version 2.0 (the 'License'). You may not use this file except in | |
11 | * compliance with the License. Please obtain a copy of the License at | |
12 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
13 | * file. | |
14 | * | |
15 | * The Original Code and all software distributed under the License are | |
16 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
1c79356b A |
17 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
18 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
43866e37 A |
19 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
20 | * Please see the License for the specific language governing rights and | |
21 | * limitations under the License. | |
1c79356b A |
22 | * |
23 | * @APPLE_LICENSE_HEADER_END@ | |
24 | */ | |
25 | /* Copyright (c) 1998 Apple Computer, Inc. All Rights Reserved */ | |
26 | /*- | |
27 | * @(#)vstat.h | |
28 | */ | |
1c79356b A |
29 | |
30 | #ifndef _SYS_VSTAT_H_ | |
31 | #define _SYS_VSTAT_H_ | |
32 | ||
9bccf70c A |
33 | #include <sys/appleapiopts.h> |
34 | ||
35 | #warning obsolete header! delete the include from your sources | |
36 | ||
37 | #ifdef __APPLE_API_OBSOLETE | |
38 | ||
1c79356b A |
39 | #include <sys/time.h> |
40 | #include <sys/attr.h> | |
41 | ||
42 | #ifndef _POSIX_SOURCE | |
43 | ||
44 | struct vstat { | |
45 | fsid_t vst_volid; /* volume identifier */ | |
46 | fsobj_id_t vst_nodeid; /* object's id */ | |
9bccf70c | 47 | fsobj_type_t vst_vnodetype; /* vnode type (VREG, VDIR, etc.) */ |
1c79356b A |
48 | fsobj_tag_t vst_vnodetag; /* vnode tag (HFS, UFS, etc.) */ |
49 | mode_t vst_mode; /* inode protection mode */ | |
50 | nlink_t vst_nlink; /* number of hard links */ | |
51 | uid_t vst_uid; /* user ID of the file's owner */ | |
52 | gid_t vst_gid; /* group ID of the file's group */ | |
53 | dev_t vst_dev; /* inode's device */ | |
54 | dev_t vst_rdev; /* device type */ | |
55 | #ifndef _POSIX_SOURCE | |
56 | struct timespec vst_atimespec; /* time of last access */ | |
57 | struct timespec vst_mtimespec; /* time of last data modification */ | |
58 | struct timespec vst_ctimespec; /* time of last file status change */ | |
59 | #else | |
60 | time_t vst_atime; /* time of last access */ | |
61 | long vst_atimensec; /* nsec of last access */ | |
62 | time_t vst_mtime; /* time of last data modification */ | |
63 | long vst_mtimensec; /* nsec of last data modification */ | |
64 | time_t vst_ctime; /* time of last file status change */ | |
65 | long vst_ctimensec; /* nsec of last file status change */ | |
66 | #endif | |
67 | off_t vst_filesize; /* file size, in bytes */ | |
68 | quad_t vst_blocks; /* bytes allocated for file */ | |
69 | u_int32_t vst_blksize; /* optimal blocksize for I/O */ | |
70 | u_int32_t vst_flags; /* user defined flags for file */ | |
71 | }; | |
72 | ||
73 | #endif /* ! _POSIX_SOURCE */ | |
9bccf70c | 74 | #endif /* __APPLE_API_OBSOLETE */ |
1c79356b A |
75 | |
76 | #endif /* !_SYS_VSTAT_H_ */ |