1/*	$NetBSD: svr4_stat.h,v 1.9 2002/05/03 01:34:48 eeh Exp $	 */
2
3/*-
4 * Copyright (c) 1994 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Christos Zoulas.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 *    notice, this list of conditions and the following disclaimer in the
17 *    documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#ifndef	_SVR4_STAT_H_
33#define	_SVR4_STAT_H_
34
35#include <compat/svr4/svr4_types.h>
36#include <sys/stat.h>
37
38struct svr4_stat {
39	svr4_o_dev_t	st_dev;
40	svr4_o_ino_t	st_ino;
41	svr4_o_mode_t	st_mode;
42	svr4_o_nlink_t	st_nlink;
43	svr4_o_uid_t	st_uid;
44	svr4_o_gid_t	st_gid;
45	svr4_o_dev_t	st_rdev;
46	svr4_off32_t	st_size;
47	svr4_time32_t	st_atim;
48	svr4_time32_t	st_mtim;
49	svr4_time32_t	st_ctim;
50};
51
52struct svr4_xstat {
53	svr4_dev_t		st_dev;
54#ifndef _LP64
55	long			st_pad1[3];
56#endif
57	svr4_ino_t		st_ino;
58	svr4_mode_t		st_mode;
59	svr4_nlink_t		st_nlink;
60	svr4_uid_t		st_uid;
61	svr4_gid_t		st_gid;
62	svr4_dev_t		st_rdev;
63#ifndef _LP64
64	long			st_pad2[2];
65#endif
66	svr4_off_t		st_size;
67#ifndef _LP64
68	long			st_pad3;
69#endif
70	svr4_timestruc_t	st_atim;
71	svr4_timestruc_t	st_mtim;
72	svr4_timestruc_t	st_ctim;
73
74	int			st_blksize;
75	svr4_blkcnt_t		st_blocks;
76	char			st_fstype[16];
77#ifndef _LP64
78	long			st_pad4[8];
79#endif
80};
81
82struct svr4_stat64 {
83	svr4_dev_t		st_dev;
84#ifndef _LP64
85	long			st_pad1[3];
86#endif
87	svr4_ino64_t		st_ino;
88	svr4_mode_t		st_mode;
89	svr4_nlink_t		st_nlink;
90	svr4_uid_t		st_uid;
91	svr4_gid_t		st_gid;
92	svr4_dev_t		st_rdev;
93#ifndef _LP64
94	long			st_pad2[2];
95#endif
96	svr4_off64_t		st_size;
97	svr4_timestruc_t	st_atim;
98	svr4_timestruc_t	st_mtim;
99	svr4_timestruc_t	st_ctim;
100	int			st_blksize;
101	svr4_blkcnt64_t		st_blocks;
102	char			st_fstype[16];
103#ifndef _LP64
104	long			st_pad4[8];
105#endif
106};
107
108#define	SVR4_PC_LINK_MAX		1
109#define	SVR4_PC_MAX_CANON		2
110#define	SVR4_PC_MAX_INPUT		3
111#define	SVR4_PC_NAME_MAX		4
112#define	SVR4_PC_PATH_MAX		5
113#define	SVR4_PC_PIPE_BUF		6
114#define	SVR4_PC_NO_TRUNC		7
115#define	SVR4_PC_VDISABLE		8
116#define	SVR4_PC_CHOWN_RESTRICTED	9
117#define	SVR4_PC_ASYNC_IO		10
118#define	SVR4_PC_PRIO_IO			11
119#define	SVR4_PC_SYNC_IO			12
120#define	SVR4_PC_FILESIZEBITS		67
121
122#endif /* !_SVR4_STAT_H_ */
123