kernel tree reorganization stage 1: Major cvs repository work (not logged as
[dragonfly.git] / sys / emulation / svr4 / svr4_fcntl.h
1 /*
2  * Copyright (c) 1998 Mark Newton
3  * Copyright (c) 1994 Christos Zoulas
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  * 
28  * $FreeBSD: src/sys/svr4/svr4_fcntl.h,v 1.3 1999/08/28 00:51:15 peter Exp $
29  * $DragonFly: src/sys/emulation/svr4/Attic/svr4_fcntl.h,v 1.3 2003/08/07 21:17:19 dillon Exp $
30  */
31
32 #ifndef _SVR4_FCNTL_H_
33 #define _SVR4_FCNTL_H_
34
35 #include "svr4_types.h"
36 #include <sys/fcntl.h>
37
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_NONBLOCK         0x0080
46 #define SVR4_O_CREAT            0x0100
47 #define SVR4_O_TRUNC            0x0200
48 #define SVR4_O_EXCL             0x0400
49 #define SVR4_O_NOCTTY           0x0800
50 #define SVR4_O_PRIV             0x1000
51
52
53 #define SVR4_FD_CLOEXEC         1
54
55 #define SVR4_F_DUPFD            0
56 #define SVR4_F_GETFD            1
57 #define SVR4_F_SETFD            2
58 #define SVR4_F_GETFL            3
59 #define SVR4_F_SETFL            4
60 #define SVR4_F_GETLK_SVR3       5
61 #define SVR4_F_SETLK            6
62 #define SVR4_F_SETLKW           7
63 #define SVR4_F_CHKFL            8
64 #define SVR4_F_DUP2FD           9
65 #define SVR4_F_ALLOCSP          10
66 #define SVR4_F_FREESP           11
67
68 #define SVR4_F_ISSTREAM         13
69 #define SVR4_F_GETLK            14
70 #define SVR4_F_PRIV             15
71 #define SVR4_F_NPRIV            16
72 #define SVR4_F_QUOTACTL         17
73 #define SVR4_F_BLOCKS           18
74 #define SVR4_F_BLKSIZE          19
75 #define SVR4_F_RSETLK           20
76 #define SVR4_F_RGETLK           21
77 #define SVR4_F_RSETLKW          22
78 #define SVR4_F_GETOWN           23
79 #define SVR4_F_SETOWN           24
80 #define SVR4_F_REVOKE           25
81 #define SVR4_F_HASREMOTELOCKS   26
82 #define SVR4_F_FREESP64         27
83
84 #define SVR4_F_GETLK64          33
85 #define SVR4_F_SETLK64          34
86 #define SVR4_F_SETLKW64         35
87
88 #define SVR4_F_SHARE            40
89 #define SVR4_F_UNSHARE          41
90
91 #define SVR4_F_CHSIZE_XENIX     0x6000
92 #define SVR4_F_RDCHK_XENIX      0x6001
93 #define SVR4_F_LK_UNLCK_XENIX   0x6300
94 #define SVR4_F_LK_LOCK_XENIX    0x7200
95 #define SVR4_F_LK_NBLCK_XENIX   0x6200
96 #define SVR4_F_LK_RLCK_XENIX    0x7100
97 #define SVR4_F_LK_NBRLCK_XENIX  0x6100
98
99 #define SVR4_LK_CMDTYPE(x)   (((x) >> 12) & 0x7)
100 #define SVR4_LK_LCKTYPE(x)   (((x) >> 8) & 0x7)
101
102 #define SVR4_F_RDLCK    1
103 #define SVR4_F_WRLCK    2
104 #define SVR4_F_UNLCK    3
105
106 struct svr4_flock_svr3 {
107         short           l_type;
108         short           l_whence;
109         svr4_off_t      l_start;
110         svr4_off_t      l_len;
111         short           l_sysid;
112         svr4_o_pid_t    l_pid;
113 };
114
115
116 struct svr4_flock {
117         short           l_type;
118         short           l_whence;
119         svr4_off_t      l_start;
120         svr4_off_t      l_len;
121         long            l_sysid;
122         svr4_pid_t      l_pid;
123         long            pad[4];
124 };
125
126 struct svr4_flock64 {
127         short           l_type;
128         short           l_whence;
129         svr4_off64_t    l_start;
130         svr4_off64_t    l_len;
131         long            l_sysid;
132         svr4_pid_t      l_pid;
133         long            pad[4];
134 };
135 #endif /* !_SVR4_FCNTL_H_ */