]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. | |
7 | * | |
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 | |
17 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
18 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
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. | |
22 | * | |
23 | * @APPLE_LICENSE_HEADER_END@ | |
24 | */ | |
25 | /* Copyright (c) 1998 Apple Computer, Inc. All Rights Reserved */ | |
26 | /*- | |
27 | * @(#)vstat.h | |
28 | */ | |
29 | ||
30 | #ifndef _SYS_VSTAT_H_ | |
31 | #define _SYS_VSTAT_H_ | |
32 | ||
33 | #include <sys/appleapiopts.h> | |
34 | ||
35 | #warning obsolete header! delete the include from your sources | |
36 | ||
37 | #ifdef __APPLE_API_OBSOLETE | |
38 | ||
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 */ | |
47 | fsobj_type_t vst_vnodetype; /* vnode type (VREG, VDIR, etc.) */ | |
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 */ | |
74 | #endif /* __APPLE_API_OBSOLETE */ | |
75 | ||
76 | #endif /* !_SYS_VSTAT_H_ */ |