fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
[pspp] / 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 extern int fcntl (int fd, int action, ...);
63 # endif
64 #elif defined GNULIB_POSIXCHECK
65 # undef fcntl
66 # define fcntl \
67     (GL_LINK_WARNING ("fcntl is not always POSIX compliant - " \
68                       "use gnulib module fcntl for portability"), \
69      fcntl)
70 #endif
71
72 #if @GNULIB_OPEN@
73 # if @REPLACE_OPEN@
74 #  undef open
75 #  define open rpl_open
76 extern int open (const char *filename, int flags, ...) _GL_ARG_NONNULL ((1));
77 # endif
78 #elif defined GNULIB_POSIXCHECK
79 # undef open
80 # define open \
81     (GL_LINK_WARNING ("open is not always POSIX compliant - " \
82                       "use gnulib module open for portability"), \
83      open)
84 #endif
85
86 #if @GNULIB_OPENAT@
87 # if @REPLACE_OPENAT@
88 #  undef openat
89 #  define openat rpl_openat
90 # endif
91 # if !@HAVE_OPENAT@ || @REPLACE_OPENAT@
92 extern int openat (int fd, char const *file, int flags, /* mode_t mode */ ...)
93      _GL_ARG_NONNULL ((2));
94 # endif
95 #elif defined GNULIB_POSIXCHECK
96 # undef openat
97 # define openat \
98     (GL_LINK_WARNING ("openat is not portable - " \
99                       "use gnulib module openat for portability"), \
100      openat)
101 #endif
102
103 #ifdef __cplusplus
104 }
105 #endif
106
107 /* Fix up the FD_* macros.  */
108
109 #ifndef FD_CLOEXEC
110 # define FD_CLOEXEC 1
111 #endif
112
113 /* Fix up the supported F_* macros.  Intentionally leave other F_*
114    macros undefined.  */
115
116 #ifndef F_DUPFD_CLOEXEC
117 # define F_DUPFD_CLOEXEC 0x40000000
118 /* Witness variable: 1 if gnulib defined F_DUPFD_CLOEXEC, 0 otherwise.  */
119 # define GNULIB_defined_F_DUPFD_CLOEXEC 1
120 #else
121 # define GNULIB_defined_F_DUPFD_CLOEXEC 0
122 #endif
123
124 /* Fix up the O_* macros.  */
125
126 #if !defined O_DIRECT && defined O_DIRECTIO
127 /* Tru64 spells it `O_DIRECTIO'.  */
128 # define O_DIRECT O_DIRECTIO
129 #endif
130
131 #if !defined O_CLOEXEC && defined O_NOINHERIT
132 /* Mingw spells it `O_NOINHERIT'.  Intentionally leave it
133    undefined if not available.  */
134 # define O_CLOEXEC O_NOINHERIT
135 #endif
136
137 #ifndef O_DIRECT
138 # define O_DIRECT 0
139 #endif
140
141 #ifndef O_DIRECTORY
142 # define O_DIRECTORY 0
143 #endif
144
145 #ifndef O_DSYNC
146 # define O_DSYNC 0
147 #endif
148
149 #ifndef O_NDELAY
150 # define O_NDELAY 0
151 #endif
152
153 #ifndef O_NOATIME
154 # define O_NOATIME 0
155 #endif
156
157 #ifndef O_NONBLOCK
158 # define O_NONBLOCK O_NDELAY
159 #endif
160
161 #ifndef O_NOCTTY
162 # define O_NOCTTY 0
163 #endif
164
165 #ifndef O_NOFOLLOW
166 # define O_NOFOLLOW 0
167 #endif
168
169 #ifndef O_NOLINKS
170 # define O_NOLINKS 0
171 #endif
172
173 #ifndef O_RSYNC
174 # define O_RSYNC 0
175 #endif
176
177 #ifndef O_SYNC
178 # define O_SYNC 0
179 #endif
180
181 #ifndef O_TTY_INIT
182 # define O_TTY_INIT 0
183 #endif
184
185 /* For systems that distinguish between text and binary I/O.
186    O_BINARY is usually declared in fcntl.h  */
187 #if !defined O_BINARY && defined _O_BINARY
188   /* For MSC-compatible compilers.  */
189 # define O_BINARY _O_BINARY
190 # define O_TEXT _O_TEXT
191 #endif
192
193 #if defined __BEOS__ || defined __HAIKU__
194   /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect.  */
195 # undef O_BINARY
196 # undef O_TEXT
197 #endif
198
199 #ifndef O_BINARY
200 # define O_BINARY 0
201 # define O_TEXT 0
202 #endif
203
204 /* Fix up the AT_* macros.  */
205
206 /* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive.  Its
207    value exceeds INT_MAX, so its use as an int doesn't conform to the
208    C standard, and GCC and Sun C complain in some cases.  If the bug
209    is present, undef AT_FDCWD here, so it can be redefined below.  */
210 #if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553
211 # undef AT_FDCWD
212 #endif
213
214 /* Use the same bit pattern as Solaris 9, but with the proper
215    signedness.  The bit pattern is important, in case this actually is
216    Solaris with the above workaround.  */
217 #ifndef AT_FDCWD
218 # define AT_FDCWD (-3041965)
219 #endif
220
221 /* Use the same values as Solaris 9.  This shouldn't matter, but
222    there's no real reason to differ.  */
223 #ifndef AT_SYMLINK_NOFOLLOW
224 # define AT_SYMLINK_NOFOLLOW 4096
225 #endif
226
227 #ifndef AT_REMOVEDIR
228 # define AT_REMOVEDIR 1
229 #endif
230
231 /* Solaris 9 lacks these two, so just pick unique values.  */
232 #ifndef AT_SYMLINK_FOLLOW
233 # define AT_SYMLINK_FOLLOW 2
234 #endif
235
236 #ifndef AT_EACCESS
237 # define AT_EACCESS 4
238 #endif
239
240
241 #endif /* _GL_FCNTL_H */
242 #endif /* _GL_FCNTL_H */
243 #endif