1 /* Like <fcntl.h>, but with non-working flags defined to 0.
3 Copyright (C) 2006-2011 Free Software Foundation, Inc.
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.
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.
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/>. */
18 /* written by Paul Eggert */
21 @PRAGMA_SYSTEM_HEADER@
25 #if defined __need_system_fcntl_h
26 /* Special invocation convention. */
28 #include <sys/types.h>
29 /* On some systems other than glibc, <sys/stat.h> is a prerequisite of
30 <fcntl.h>. On glibc systems, we would like to avoid namespace pollution.
31 But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an
32 extern "C" { ... } block, which leads to errors in C++ mode with the
33 overridden <sys/stat.h> from gnulib. These errors are known to be gone
34 with g++ version >= 4.3. */
35 #if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)))
36 # include <sys/stat.h>
38 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@
41 /* Normal invocation convention. */
43 #ifndef _@GUARD_PREFIX@_FCNTL_H
45 #include <sys/types.h>
46 /* On some systems other than glibc, <sys/stat.h> is a prerequisite of
47 <fcntl.h>. On glibc systems, we would like to avoid namespace pollution.
48 But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an
49 extern "C" { ... } block, which leads to errors in C++ mode with the
50 overridden <sys/stat.h> from gnulib. These errors are known to be gone
51 with g++ version >= 4.3. */
52 #if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)))
53 # include <sys/stat.h>
55 /* The include_next requires a split double-inclusion guard. */
56 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@
58 #ifndef _@GUARD_PREFIX@_FCNTL_H
59 #define _@GUARD_PREFIX@_FCNTL_H
61 #ifndef __GLIBC__ /* Avoid namespace pollution on glibc systems. */
66 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
68 /* The definition of _GL_ARG_NONNULL is copied here. */
70 /* The definition of _GL_WARN_ON_USE is copied here. */
73 /* Declare overridden functions. */
77 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
79 # define fcntl rpl_fcntl
81 _GL_FUNCDECL_RPL (fcntl
, int, (int fd
, int action
, ...));
82 _GL_CXXALIAS_RPL (fcntl
, int, (int fd
, int action
, ...));
85 _GL_FUNCDECL_SYS (fcntl
, int, (int fd
, int action
, ...));
87 _GL_CXXALIAS_SYS (fcntl
, int, (int fd
, int action
, ...));
89 _GL_CXXALIASWARN (fcntl
);
90 #elif defined GNULIB_POSIXCHECK
92 # if HAVE_RAW_DECL_FCNTL
93 _GL_WARN_ON_USE (fcntl
, "fcntl is not always POSIX compliant - "
94 "use gnulib module fcntl for portability");
100 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
102 # define open rpl_open
104 _GL_FUNCDECL_RPL (open
, int, (const char *filename
, int flags
, ...)
105 _GL_ARG_NONNULL ((1)));
106 _GL_CXXALIAS_RPL (open
, int, (const char *filename
, int flags
, ...));
108 _GL_CXXALIAS_SYS (open
, int, (const char *filename
, int flags
, ...));
110 /* On HP-UX 11, in C++ mode, open() is defined as an inline function with a
111 default argument. _GL_CXXALIASWARN does not work in this case. */
113 _GL_CXXALIASWARN (open
);
115 #elif defined GNULIB_POSIXCHECK
117 /* Assume open is always declared. */
118 _GL_WARN_ON_USE (open
, "open is not always POSIX compliant - "
119 "use gnulib module open for portability");
123 # if @REPLACE_OPENAT@
124 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
126 # define openat rpl_openat
128 _GL_FUNCDECL_RPL (openat
, int,
129 (int fd
, char const *file
, int flags
, /* mode_t mode */ ...)
130 _GL_ARG_NONNULL ((2)));
131 _GL_CXXALIAS_RPL (openat
, int,
132 (int fd
, char const *file
, int flags
, /* mode_t mode */ ...));
135 _GL_FUNCDECL_SYS (openat
, int,
136 (int fd
, char const *file
, int flags
, /* mode_t mode */ ...)
137 _GL_ARG_NONNULL ((2)));
139 _GL_CXXALIAS_SYS (openat
, int,
140 (int fd
, char const *file
, int flags
, /* mode_t mode */ ...));
142 _GL_CXXALIASWARN (openat
);
143 #elif defined GNULIB_POSIXCHECK
145 # if HAVE_RAW_DECL_OPENAT
146 _GL_WARN_ON_USE (openat
, "openat is not portable - "
147 "use gnulib module openat for portability");
152 /* Fix up the FD_* macros, only known to be missing on mingw. */
155 # define FD_CLOEXEC 1
158 /* Fix up the supported F_* macros. Intentionally leave other F_*
159 macros undefined. Only known to be missing on mingw. */
161 #ifndef F_DUPFD_CLOEXEC
162 # define F_DUPFD_CLOEXEC 0x40000000
163 /* Witness variable: 1 if gnulib defined F_DUPFD_CLOEXEC, 0 otherwise. */
164 # define GNULIB_defined_F_DUPFD_CLOEXEC 1
166 # define GNULIB_defined_F_DUPFD_CLOEXEC 0
177 /* Fix up the O_* macros. */
179 #if !defined O_DIRECT && defined O_DIRECTIO
180 /* Tru64 spells it `O_DIRECTIO'. */
181 # define O_DIRECT O_DIRECTIO
184 #if !defined O_CLOEXEC && defined O_NOINHERIT
185 /* Mingw spells it `O_NOINHERIT'. */
186 # define O_CLOEXEC O_NOINHERIT
198 # define O_DIRECTORY 0
206 # define O_EXEC O_RDONLY /* This is often close enough in older systems. */
218 # define O_NONBLOCK O_NDELAY
221 /* If the gnulib module 'nonblocking' is in use, guarantee a working non-zero
222 value of O_NONBLOCK. Otherwise, O_NONBLOCK is defined (above) to O_NDELAY
223 or to 0 as fallback. */
224 #if @GNULIB_NONBLOCKING@
226 # define GNULIB_defined_O_NONBLOCK 0
228 # define GNULIB_defined_O_NONBLOCK 1
230 # define O_NONBLOCK 0x40000000
239 # define O_NOFOLLOW 0
251 # define O_SEARCH O_RDONLY /* This is often close enough in older systems. */
259 # define O_TTY_INIT 0
262 #if O_ACCMODE != (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)
264 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)
267 /* For systems that distinguish between text and binary I/O.
268 O_BINARY is usually declared in fcntl.h */
269 #if !defined O_BINARY && defined _O_BINARY
270 /* For MSC-compatible compilers. */
271 # define O_BINARY _O_BINARY
272 # define O_TEXT _O_TEXT
275 #if defined __BEOS__ || defined __HAIKU__
276 /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect. */
286 /* Fix up the AT_* macros. */
288 /* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive. Its
289 value exceeds INT_MAX, so its use as an int doesn't conform to the
290 C standard, and GCC and Sun C complain in some cases. If the bug
291 is present, undef AT_FDCWD here, so it can be redefined below. */
292 #if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553
296 /* Use the same bit pattern as Solaris 9, but with the proper
297 signedness. The bit pattern is important, in case this actually is
298 Solaris with the above workaround. */
300 # define AT_FDCWD (-3041965)
303 /* Use the same values as Solaris 9. This shouldn't matter, but
304 there's no real reason to differ. */
305 #ifndef AT_SYMLINK_NOFOLLOW
306 # define AT_SYMLINK_NOFOLLOW 4096
310 # define AT_REMOVEDIR 1
313 /* Solaris 9 lacks these two, so just pick unique values. */
314 #ifndef AT_SYMLINK_FOLLOW
315 # define AT_SYMLINK_FOLLOW 2
319 # define AT_EACCESS 4
323 #endif /* _@GUARD_PREFIX@_FCNTL_H */
324 #endif /* _@GUARD_PREFIX@_FCNTL_H */