1 /* $NetBSD: svr4_fcntl.h,v 1.8 1999/01/23 23:38:02 christos Exp $ */
4 * Copyright (c) 1994 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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.
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.
32 #ifndef _SVR4_FCNTL_H_
33 #define _SVR4_FCNTL_H_
35 #include <compat/svr4/svr4_types.h>
36 #include <sys/fcntl.h>
38 #define SVR4_O_RDONLY 0x0000
39 #define SVR4_O_WRONLY 0x0001
40 #define SVR4_O_RDWR 0x0002
41 #define SVR4_O_ACCMODE 0x0003
42 #define SVR4_O_NDELAY 0x0004
43 #define SVR4_O_APPEND 0x0008
44 #define SVR4_O_SYNC 0x0010
45 #define SVR4_O_DSYNC 0x0040
46 #define SVR4_O_NONBLOCK 0x0080
47 #define SVR4_O_CREAT 0x0100
48 #define SVR4_O_TRUNC 0x0200
49 #define SVR4_O_EXCL 0x0400
50 #define SVR4_O_NOCTTY 0x0800
51 #define SVR4_O_PRIV 0x1000
52 #define SVR4_O_LARGEFILE 0x2000
53 #define SVR4_O_RSYNC 0x8000
56 #define SVR4_FD_CLOEXEC 1
58 #define SVR4_F_DUPFD 0
59 #define SVR4_F_GETFD 1
60 #define SVR4_F_SETFD 2
61 #define SVR4_F_GETFL 3
62 #define SVR4_F_SETFL 4
63 #define SVR4_F_GETLK_SVR3 5
64 #define SVR4_F_SETLK 6
65 #define SVR4_F_SETLKW 7
66 #define SVR4_F_CHKFL 8
67 #define SVR4_F_DUP2FD 9
68 #define SVR4_F_ALLOCSP 10
69 #define SVR4_F_FREESP 11
71 #define SVR4_F_ISSTREAM 13
72 #define SVR4_F_GETLK 14
73 #define SVR4_F_PRIV 15
74 #define SVR4_F_NPRIV 16
75 #define SVR4_F_QUOTACTL 17
76 #define SVR4_F_BLOCKS 18
77 #define SVR4_F_BLKSIZE 19
78 #define SVR4_F_RSETLK 20
79 #define SVR4_F_RGETLK 21
80 #define SVR4_F_RSETLKW 22
81 #define SVR4_F_GETOWN 23
82 #define SVR4_F_SETOWN 24
83 #define SVR4_F_REVOKE 25
84 #define SVR4_F_HASREMOTELOCKS 26
85 #define SVR4_F_FREESP64 27
87 #define SVR4_F_GETLK64 33
88 #define SVR4_F_SETLK64 34
89 #define SVR4_F_SETLKW64 35
91 #define SVR4_F_SHARE 40
92 #define SVR4_F_UNSHARE 41
94 #define SVR4_F_CHSIZE_XENIX 0x6000
95 #define SVR4_F_RDCHK_XENIX 0x6001
96 #define SVR4_F_LK_UNLCK_XENIX 0x6300
97 #define SVR4_F_LK_LOCK_XENIX 0x7200
98 #define SVR4_F_LK_NBLCK_XENIX 0x6200
99 #define SVR4_F_LK_RLCK_XENIX 0x7100
100 #define SVR4_F_LK_NBRLCK_XENIX 0x6100
102 #define SVR4_LK_CMDTYPE(x) (((x) >> 12) & 0x7)
103 #define SVR4_LK_LCKTYPE(x) (((x) >> 8) & 0x7)
105 #define SVR4_F_RDLCK 1
106 #define SVR4_F_WRLCK 2
107 #define SVR4_F_UNLCK 3
109 struct svr4_flock_svr3
{
129 struct svr4_flock64
{
132 svr4_off64_t l_start
;
138 #endif /* !_SVR4_FCNTL_H_ */