fcntl: port portions of fcntl to mingw
[gnulib.git] / lib / fcntl.in.h
1 /* Like <fcntl.h>, but with non-working flags defined to 0.
2
3    Copyright (C) 2006-2009 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* written by Paul Eggert */
19
20 #if __GNUC__ >= 3
21 @PRAGMA_SYSTEM_HEADER@
22 #endif
23
24 #if defined __need_system_fcntl_h
25 /* Special invocation convention.  */
26
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@
31
32 #else
33 /* Normal invocation convention.  */
34
35 #ifndef _GL_FCNTL_H
36
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <unistd.h>
40 /* The include_next requires a split double-inclusion guard.  */
41 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@
42
43 #ifndef _GL_FCNTL_H
44 #define _GL_FCNTL_H
45
46
47 /* The definition of GL_LINK_WARNING is copied here.  */
48
49 /* The definition of _GL_ARG_NONNULL is copied here.  */
50
51
52 /* Declare overridden functions.  */
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57
58 #if @GNULIB_FCNTL@
59 # if @REPLACE_FCNTL@
60 #  undef fcntl
61 #  define fcntl rpl_fcntl
62 # endif
63 # if !@HAVE_FCNTL@ || @REPLACE_FCNTL@
64 extern int fcntl (int fd, int action, ...);
65 # endif
66 #elif defined GNULIB_POSIXCHECK
67 # undef fcntl
68 # define fcntl \
69     (GL_LINK_WARNING ("fcntl is not always POSIX compliant - " \
70                       "use gnulib module fcntl for portability"), \
71      fcntl)
72 #endif
73
74 #if @GNULIB_OPEN@
75 # if @REPLACE_OPEN@
76 #  undef open
77 #  define open rpl_open
78 extern int open (const char *filename, int flags, ...) _GL_ARG_NONNULL ((1));
79 # endif
80 #elif defined GNULIB_POSIXCHECK
81 # undef open
82 # define open \
83     (GL_LINK_WARNING ("open is not always POSIX compliant - " \
84                       "use gnulib module open for portability"), \
85      open)
86 #endif
87
88 #if @GNULIB_OPENAT@
89 # if @REPLACE_OPENAT@
90 #  undef openat
91 #  define openat rpl_openat
92 # endif
93 # if !@HAVE_OPENAT@ || @REPLACE_OPENAT@
94 extern int openat (int fd, char const *file, int flags, /* mode_t mode */ ...)
95      _GL_ARG_NONNULL ((2));
96 # endif
97 #elif defined GNULIB_POSIXCHECK
98 # undef openat
99 # define openat \
100     (GL_LINK_WARNING ("openat is not portable - " \
101                       "use gnulib module openat for portability"), \
102      openat)
103 #endif
104
105 #ifdef __cplusplus
106 }
107 #endif
108
109 /* Fix up the FD_* macros, only known to be missing on mingw.  */
110
111 #ifndef FD_CLOEXEC
112 # define FD_CLOEXEC 1
113 #endif
114
115 /* Fix up the supported F_* macros.  Intentionally leave other F_*
116    macros undefined.  Only known to be missing on mingw.  */
117
118 #ifndef F_DUPFD_CLOEXEC
119 # define F_DUPFD_CLOEXEC 0x40000000
120 /* Witness variable: 1 if gnulib defined F_DUPFD_CLOEXEC, 0 otherwise.  */
121 # define GNULIB_defined_F_DUPFD_CLOEXEC 1
122 #else
123 # define GNULIB_defined_F_DUPFD_CLOEXEC 0
124 #endif
125
126 #ifndef F_DUPFD
127 # define F_DUPFD 1
128 #endif
129
130 #ifndef F_GETFD
131 # define F_GETFD 2
132 #endif
133
134 /* Fix up the O_* macros.  */
135
136 #if !defined O_DIRECT && defined O_DIRECTIO
137 /* Tru64 spells it `O_DIRECTIO'.  */
138 # define O_DIRECT O_DIRECTIO
139 #endif
140
141 #if !defined O_CLOEXEC && defined O_NOINHERIT
142 /* Mingw spells it `O_NOINHERIT'.  Intentionally leave it
143    undefined if not available.  */
144 # define O_CLOEXEC O_NOINHERIT
145 #endif
146
147 #ifndef O_DIRECT
148 # define O_DIRECT 0
149 #endif
150
151 #ifndef O_DIRECTORY
152 # define O_DIRECTORY 0
153 #endif
154
155 #ifndef O_DSYNC
156 # define O_DSYNC 0
157 #endif
158
159 #ifndef O_NDELAY
160 # define O_NDELAY 0
161 #endif
162
163 #ifndef O_NOATIME
164 # define O_NOATIME 0
165 #endif
166
167 #ifndef O_NONBLOCK
168 # define O_NONBLOCK O_NDELAY
169 #endif
170
171 #ifndef O_NOCTTY
172 # define O_NOCTTY 0
173 #endif
174
175 #ifndef O_NOFOLLOW
176 # define O_NOFOLLOW 0
177 #endif
178
179 #ifndef O_NOLINKS
180 # define O_NOLINKS 0
181 #endif
182
183 #ifndef O_RSYNC
184 # define O_RSYNC 0
185 #endif
186
187 #ifndef O_SYNC
188 # define O_SYNC 0
189 #endif
190
191 #ifndef O_TTY_INIT
192 # define O_TTY_INIT 0
193 #endif
194
195 /* For systems that distinguish between text and binary I/O.
196    O_BINARY is usually declared in fcntl.h  */
197 #if !defined O_BINARY && defined _O_BINARY
198   /* For MSC-compatible compilers.  */
199 # define O_BINARY _O_BINARY
200 # define O_TEXT _O_TEXT
201 #endif
202
203 #if defined __BEOS__ || defined __HAIKU__
204   /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect.  */
205 # undef O_BINARY
206 # undef O_TEXT
207 #endif
208
209 #ifndef O_BINARY
210 # define O_BINARY 0
211 # define O_TEXT 0
212 #endif
213
214 /* Fix up the AT_* macros.  */
215
216 /* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive.  Its
217    value exceeds INT_MAX, so its use as an int doesn't conform to the
218    C standard, and GCC and Sun C complain in some cases.  If the bug
219    is present, undef AT_FDCWD here, so it can be redefined below.  */
220 #if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553
221 # undef AT_FDCWD
222 #endif
223
224 /* Use the same bit pattern as Solaris 9, but with the proper
225    signedness.  The bit pattern is important, in case this actually is
226    Solaris with the above workaround.  */
227 #ifndef AT_FDCWD
228 # define AT_FDCWD (-3041965)
229 #endif
230
231 /* Use the same values as Solaris 9.  This shouldn't matter, but
232    there's no real reason to differ.  */
233 #ifndef AT_SYMLINK_NOFOLLOW
234 # define AT_SYMLINK_NOFOLLOW 4096
235 #endif
236
237 #ifndef AT_REMOVEDIR
238 # define AT_REMOVEDIR 1
239 #endif
240
241 /* Solaris 9 lacks these two, so just pick unique values.  */
242 #ifndef AT_SYMLINK_FOLLOW
243 # define AT_SYMLINK_FOLLOW 2
244 #endif
245
246 #ifndef AT_EACCESS
247 # define AT_EACCESS 4
248 #endif
249
250
251 #endif /* _GL_FCNTL_H */
252 #endif /* _GL_FCNTL_H */
253 #endif