Mercurial > hg > octave-kai > gnulib-hg
annotate lib/fcntl.in.h @ 14079:97fc9a21a8fb
maint: update almost all copyright ranges to include 2011
Run the new "make update-copyright" rule.
author | Jim Meyering <meyering@redhat.com> |
---|---|
date | Sat, 01 Jan 2011 20:17:23 +0100 (2011-01-01) |
parents | 4b44ba76787f |
children | 0b3f0c54fbc8 |
rev | line source |
---|---|
9247 | 1 /* Like <fcntl.h>, but with non-working flags defined to 0. |
2 | |
14079
97fc9a21a8fb
maint: update almost all copyright ranges to include 2011
Jim Meyering <meyering@redhat.com>
parents:
14058
diff
changeset
|
3 Copyright (C) 2006-2011 Free Software Foundation, Inc. |
9247 | 4 |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
9299
diff
changeset
|
5 This program is free software: you can redistribute it and/or modify |
9247 | 6 it under the terms of the GNU General Public License as published by |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
9299
diff
changeset
|
7 the Free Software Foundation; either version 3 of the License, or |
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
9299
diff
changeset
|
8 (at your option) any later version. |
9247 | 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 | |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
9299
diff
changeset
|
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
9247 | 17 |
18 /* written by Paul Eggert */ | |
19 | |
10655
8668b19a7032
Avoid gcc warnings because of #pragma GCC system_header on older gcc.
Bruno Haible <bruno@clisp.org>
parents:
10608
diff
changeset
|
20 #if __GNUC__ >= 3 |
10533
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
21 @PRAGMA_SYSTEM_HEADER@ |
10655
8668b19a7032
Avoid gcc warnings because of #pragma GCC system_header on older gcc.
Bruno Haible <bruno@clisp.org>
parents:
10608
diff
changeset
|
22 #endif |
13761
a19ace3ba849
Avoid line length limitation from HP NonStop system header files.
Bruno Haible <bruno@clisp.org>
parents:
13664
diff
changeset
|
23 @PRAGMA_COLUMNS@ |
10533
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
24 |
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
25 #if defined __need_system_fcntl_h |
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
26 /* Special invocation convention. */ |
9247 | 27 |
10533
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
28 #include <sys/types.h> |
13851
a518692b40d4
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13761
diff
changeset
|
29 /* On some systems other than glibc, <sys/stat.h> is a prerequisite of |
a518692b40d4
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13761
diff
changeset
|
30 <fcntl.h>. On glibc systems, we would like to avoid namespace pollution. |
a518692b40d4
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13761
diff
changeset
|
31 But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an |
a518692b40d4
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13761
diff
changeset
|
32 extern "C" { ... } block, which leads to errors in C++ mode with the |
a518692b40d4
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13761
diff
changeset
|
33 overridden <sys/stat.h> from gnulib. These errors are known to be gone |
a518692b40d4
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13761
diff
changeset
|
34 with g++ version >= 4.3. */ |
13885 | 35 #if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) |
12491
ad883448fbdf
Reduce namespace pollution on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
12456
diff
changeset
|
36 # include <sys/stat.h> |
ad883448fbdf
Reduce namespace pollution on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
12456
diff
changeset
|
37 #endif |
10533
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
38 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@ |
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
39 |
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
40 #else |
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
41 /* Normal invocation convention. */ |
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
42 |
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
43 #ifndef _GL_FCNTL_H |
10375
f96e845fc36d
Avoid some "gcc -pedantic" warnings.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
44 |
9247 | 45 #include <sys/types.h> |
14024
872c921488fd
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13885
diff
changeset
|
46 /* On some systems other than glibc, <sys/stat.h> is a prerequisite of |
872c921488fd
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13885
diff
changeset
|
47 <fcntl.h>. On glibc systems, we would like to avoid namespace pollution. |
872c921488fd
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13885
diff
changeset
|
48 But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an |
872c921488fd
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13885
diff
changeset
|
49 extern "C" { ... } block, which leads to errors in C++ mode with the |
872c921488fd
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13885
diff
changeset
|
50 overridden <sys/stat.h> from gnulib. These errors are known to be gone |
872c921488fd
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13885
diff
changeset
|
51 with g++ version >= 4.3. */ |
872c921488fd
fcntl-h: Fix for use of C++ on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
13885
diff
changeset
|
52 #if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) |
12491
ad883448fbdf
Reduce namespace pollution on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
12456
diff
changeset
|
53 # include <sys/stat.h> |
ad883448fbdf
Reduce namespace pollution on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
12456
diff
changeset
|
54 #endif |
9247 | 55 /* The include_next requires a split double-inclusion guard. */ |
56 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@ | |
57 | |
58 #ifndef _GL_FCNTL_H | |
59 #define _GL_FCNTL_H | |
60 | |
12763
4418796e7e4a
Avoid compilation error with cc on OSF/1 5.1.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
61 #ifndef __GLIBC__ /* Avoid namespace pollution on glibc systems. */ |
4418796e7e4a
Avoid compilation error with cc on OSF/1 5.1.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
62 # include <unistd.h> |
4418796e7e4a
Avoid compilation error with cc on OSF/1 5.1.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
63 #endif |
4418796e7e4a
Avoid compilation error with cc on OSF/1 5.1.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
64 |
9247 | 65 |
12931
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
66 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */ |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
67 |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
68 /* The definition of _GL_ARG_NONNULL is copied here. */ |
11942
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
69 |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
70 /* The definition of _GL_WARN_ON_USE is copied here. */ |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12047
diff
changeset
|
71 |
11942
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
72 |
9247 | 73 /* Declare overridden functions. */ |
74 | |
12454
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
75 #if @GNULIB_FCNTL@ |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
76 # if @REPLACE_FCNTL@ |
12931
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
77 # if !(defined __cplusplus && defined GNULIB_NAMESPACE) |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
78 # undef fcntl |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
79 # define fcntl rpl_fcntl |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
80 # endif |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
81 _GL_FUNCDECL_RPL (fcntl, int, (int fd, int action, ...)); |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
82 _GL_CXXALIAS_RPL (fcntl, int, (int fd, int action, ...)); |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
83 # else |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
84 # if !@HAVE_FCNTL@ |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
85 _GL_FUNCDECL_SYS (fcntl, int, (int fd, int action, ...)); |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
86 # endif |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
87 _GL_CXXALIAS_SYS (fcntl, int, (int fd, int action, ...)); |
12456
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
88 # endif |
12931
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
89 _GL_CXXALIASWARN (fcntl); |
12454
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
90 #elif defined GNULIB_POSIXCHECK |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
91 # undef fcntl |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
92 # if HAVE_RAW_DECL_FCNTL |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
93 _GL_WARN_ON_USE (fcntl, "fcntl is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
94 "use gnulib module fcntl for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
95 # endif |
12454
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
96 #endif |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
97 |
10608
9559d8f05cdb
Merge the two replacements for open() into a single one.
Paolo Bonzini <bonzini@gnu.org>
parents:
10533
diff
changeset
|
98 #if @GNULIB_OPEN@ |
9559d8f05cdb
Merge the two replacements for open() into a single one.
Paolo Bonzini <bonzini@gnu.org>
parents:
10533
diff
changeset
|
99 # if @REPLACE_OPEN@ |
12931
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
100 # if !(defined __cplusplus && defined GNULIB_NAMESPACE) |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
101 # undef open |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
102 # define open rpl_open |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
103 # endif |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
104 _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...) |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
105 _GL_ARG_NONNULL ((1))); |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
106 _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...)); |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
107 # else |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
108 _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...)); |
10608
9559d8f05cdb
Merge the two replacements for open() into a single one.
Paolo Bonzini <bonzini@gnu.org>
parents:
10533
diff
changeset
|
109 # endif |
14058
4b44ba76787f
open: Avoid C++ error on HP-UX 11.
Bruno Haible <bruno@clisp.org>
parents:
14024
diff
changeset
|
110 /* On HP-UX 11, in C++ mode, open() is defined as an inline function with a |
4b44ba76787f
open: Avoid C++ error on HP-UX 11.
Bruno Haible <bruno@clisp.org>
parents:
14024
diff
changeset
|
111 default argument. _GL_CXXALIASWARN does not work in this case. */ |
4b44ba76787f
open: Avoid C++ error on HP-UX 11.
Bruno Haible <bruno@clisp.org>
parents:
14024
diff
changeset
|
112 # if !defined __hpux |
12931
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
113 _GL_CXXALIASWARN (open); |
14058
4b44ba76787f
open: Avoid C++ error on HP-UX 11.
Bruno Haible <bruno@clisp.org>
parents:
14024
diff
changeset
|
114 # endif |
12451
419d4e1a3d41
fcntl-h, stdio, sys_ioctl: fix declarations
Eric Blake <ebb9@byu.net>
parents:
12422
diff
changeset
|
115 #elif defined GNULIB_POSIXCHECK |
419d4e1a3d41
fcntl-h, stdio, sys_ioctl: fix declarations
Eric Blake <ebb9@byu.net>
parents:
12422
diff
changeset
|
116 # undef open |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
117 /* Assume open is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
118 _GL_WARN_ON_USE (open, "open is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
119 "use gnulib module open for portability"); |
10608
9559d8f05cdb
Merge the two replacements for open() into a single one.
Paolo Bonzini <bonzini@gnu.org>
parents:
10533
diff
changeset
|
120 #endif |
9559d8f05cdb
Merge the two replacements for open() into a single one.
Paolo Bonzini <bonzini@gnu.org>
parents:
10533
diff
changeset
|
121 |
11942
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
122 #if @GNULIB_OPENAT@ |
12047
21ec8b9a3f27
openat: fix openat bugs on Solaris 9
Eric Blake <ebb9@byu.net>
parents:
11945
diff
changeset
|
123 # if @REPLACE_OPENAT@ |
12931
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
124 # if !(defined __cplusplus && defined GNULIB_NAMESPACE) |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
125 # undef openat |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
126 # define openat rpl_openat |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
127 # endif |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
128 _GL_FUNCDECL_RPL (openat, int, |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
129 (int fd, char const *file, int flags, /* mode_t mode */ ...) |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
130 _GL_ARG_NONNULL ((2))); |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
131 _GL_CXXALIAS_RPL (openat, int, |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
132 (int fd, char const *file, int flags, /* mode_t mode */ ...)); |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
133 # else |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
134 # if !@HAVE_OPENAT@ |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
135 _GL_FUNCDECL_SYS (openat, int, |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
136 (int fd, char const *file, int flags, /* mode_t mode */ ...) |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
137 _GL_ARG_NONNULL ((2))); |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
138 # endif |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
139 _GL_CXXALIAS_SYS (openat, int, |
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
140 (int fd, char const *file, int flags, /* mode_t mode */ ...)); |
12047
21ec8b9a3f27
openat: fix openat bugs on Solaris 9
Eric Blake <ebb9@byu.net>
parents:
11945
diff
changeset
|
141 # endif |
12931
82b0c98fe7aa
fcntl-h: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
142 _GL_CXXALIASWARN (openat); |
11942
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
143 #elif defined GNULIB_POSIXCHECK |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
144 # undef openat |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
145 # if HAVE_RAW_DECL_OPENAT |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
146 _GL_WARN_ON_USE (openat, "openat is not portable - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
147 "use gnulib module openat for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12763
diff
changeset
|
148 # endif |
11942
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
149 #endif |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
150 |
9247 | 151 |
12456
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
152 /* Fix up the FD_* macros, only known to be missing on mingw. */ |
11859
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
153 |
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
154 #ifndef FD_CLOEXEC |
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
155 # define FD_CLOEXEC 1 |
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
156 #endif |
9247 | 157 |
12454
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
158 /* Fix up the supported F_* macros. Intentionally leave other F_* |
12456
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
159 macros undefined. Only known to be missing on mingw. */ |
12454
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
160 |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
161 #ifndef F_DUPFD_CLOEXEC |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
162 # define F_DUPFD_CLOEXEC 0x40000000 |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
163 /* Witness variable: 1 if gnulib defined F_DUPFD_CLOEXEC, 0 otherwise. */ |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
164 # define GNULIB_defined_F_DUPFD_CLOEXEC 1 |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
165 #else |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
166 # define GNULIB_defined_F_DUPFD_CLOEXEC 0 |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
167 #endif |
f7624052e60d
fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
Eric Blake <ebb9@byu.net>
parents:
12451
diff
changeset
|
168 |
12456
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
169 #ifndef F_DUPFD |
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
170 # define F_DUPFD 1 |
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
171 #endif |
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
172 |
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
173 #ifndef F_GETFD |
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
174 # define F_GETFD 2 |
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
175 #endif |
f3aceada3c52
fcntl: port portions of fcntl to mingw
Eric Blake <ebb9@byu.net>
parents:
12454
diff
changeset
|
176 |
9247 | 177 /* Fix up the O_* macros. */ |
178 | |
179 #if !defined O_DIRECT && defined O_DIRECTIO | |
180 /* Tru64 spells it `O_DIRECTIO'. */ | |
181 # define O_DIRECT O_DIRECTIO | |
182 #endif | |
183 | |
11859
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
184 #if !defined O_CLOEXEC && defined O_NOINHERIT |
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
185 /* Mingw spells it `O_NOINHERIT'. Intentionally leave it |
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
186 undefined if not available. */ |
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
187 # define O_CLOEXEC O_NOINHERIT |
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
188 #endif |
27f6d88f60b1
Move more flags to lib/fcntl.in.h.
Paolo Bonzini <bonzini@gnu.org>
parents:
10778
diff
changeset
|
189 |
13664
241057e2e60f
fcntl-h: define O_CLOEXEC and O_EXEC if not defined; use new defines
Paul Eggert <eggert@cs.ucla.edu>
parents:
13616
diff
changeset
|
190 #ifndef O_CLOEXEC |
241057e2e60f
fcntl-h: define O_CLOEXEC and O_EXEC if not defined; use new defines
Paul Eggert <eggert@cs.ucla.edu>
parents:
13616
diff
changeset
|
191 # define O_CLOEXEC 0 |
241057e2e60f
fcntl-h: define O_CLOEXEC and O_EXEC if not defined; use new defines
Paul Eggert <eggert@cs.ucla.edu>
parents:
13616
diff
changeset
|
192 #endif |
241057e2e60f
fcntl-h: define O_CLOEXEC and O_EXEC if not defined; use new defines
Paul Eggert <eggert@cs.ucla.edu>
parents:
13616
diff
changeset
|
193 |
9247 | 194 #ifndef O_DIRECT |
195 # define O_DIRECT 0 | |
196 #endif | |
197 | |
198 #ifndef O_DIRECTORY | |
199 # define O_DIRECTORY 0 | |
200 #endif | |
201 | |
202 #ifndef O_DSYNC | |
203 # define O_DSYNC 0 | |
204 #endif | |
205 | |
13664
241057e2e60f
fcntl-h: define O_CLOEXEC and O_EXEC if not defined; use new defines
Paul Eggert <eggert@cs.ucla.edu>
parents:
13616
diff
changeset
|
206 #ifndef O_EXEC |
241057e2e60f
fcntl-h: define O_CLOEXEC and O_EXEC if not defined; use new defines
Paul Eggert <eggert@cs.ucla.edu>
parents:
13616
diff
changeset
|
207 # define O_EXEC O_RDONLY /* This is often close enough in older systems. */ |
241057e2e60f
fcntl-h: define O_CLOEXEC and O_EXEC if not defined; use new defines
Paul Eggert <eggert@cs.ucla.edu>
parents:
13616
diff
changeset
|
208 #endif |
241057e2e60f
fcntl-h: define O_CLOEXEC and O_EXEC if not defined; use new defines
Paul Eggert <eggert@cs.ucla.edu>
parents:
13616
diff
changeset
|
209 |
9247 | 210 #ifndef O_NDELAY |
211 # define O_NDELAY 0 | |
212 #endif | |
213 | |
214 #ifndef O_NOATIME | |
215 # define O_NOATIME 0 | |
216 #endif | |
217 | |
218 #ifndef O_NONBLOCK | |
219 # define O_NONBLOCK O_NDELAY | |
220 #endif | |
221 | |
222 #ifndef O_NOCTTY | |
223 # define O_NOCTTY 0 | |
224 #endif | |
225 | |
226 #ifndef O_NOFOLLOW | |
227 # define O_NOFOLLOW 0 | |
228 #endif | |
229 | |
230 #ifndef O_NOLINKS | |
231 # define O_NOLINKS 0 | |
232 #endif | |
233 | |
234 #ifndef O_RSYNC | |
235 # define O_RSYNC 0 | |
236 #endif | |
237 | |
13616
acc972b5da60
fcntl-h, etc.: prefer O_SEARCH to O_RDONLY when applicable
Paul Eggert <eggert@cs.ucla.edu>
parents:
12931
diff
changeset
|
238 #ifndef O_SEARCH |
acc972b5da60
fcntl-h, etc.: prefer O_SEARCH to O_RDONLY when applicable
Paul Eggert <eggert@cs.ucla.edu>
parents:
12931
diff
changeset
|
239 # define O_SEARCH O_RDONLY /* This is often close enough in older systems. */ |
acc972b5da60
fcntl-h, etc.: prefer O_SEARCH to O_RDONLY when applicable
Paul Eggert <eggert@cs.ucla.edu>
parents:
12931
diff
changeset
|
240 #endif |
acc972b5da60
fcntl-h, etc.: prefer O_SEARCH to O_RDONLY when applicable
Paul Eggert <eggert@cs.ucla.edu>
parents:
12931
diff
changeset
|
241 |
9247 | 242 #ifndef O_SYNC |
243 # define O_SYNC 0 | |
244 #endif | |
245 | |
11877
18205f9302ac
fcntl-h: add O_TTY_INIT support
Eric Blake <ebb9@byu.net>
parents:
11859
diff
changeset
|
246 #ifndef O_TTY_INIT |
18205f9302ac
fcntl-h: add O_TTY_INIT support
Eric Blake <ebb9@byu.net>
parents:
11859
diff
changeset
|
247 # define O_TTY_INIT 0 |
18205f9302ac
fcntl-h: add O_TTY_INIT support
Eric Blake <ebb9@byu.net>
parents:
11859
diff
changeset
|
248 #endif |
18205f9302ac
fcntl-h: add O_TTY_INIT support
Eric Blake <ebb9@byu.net>
parents:
11859
diff
changeset
|
249 |
9247 | 250 /* For systems that distinguish between text and binary I/O. |
251 O_BINARY is usually declared in fcntl.h */ | |
252 #if !defined O_BINARY && defined _O_BINARY | |
253 /* For MSC-compatible compilers. */ | |
254 # define O_BINARY _O_BINARY | |
255 # define O_TEXT _O_TEXT | |
256 #endif | |
257 | |
10778
ddc567d280d1
Treat Haiku like BeOS.
Ingo Weinhold <ingo_weinhold@gmx.de>
parents:
10655
diff
changeset
|
258 #if defined __BEOS__ || defined __HAIKU__ |
ddc567d280d1
Treat Haiku like BeOS.
Ingo Weinhold <ingo_weinhold@gmx.de>
parents:
10655
diff
changeset
|
259 /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect. */ |
9247 | 260 # undef O_BINARY |
261 # undef O_TEXT | |
262 #endif | |
263 | |
264 #ifndef O_BINARY | |
265 # define O_BINARY 0 | |
266 # define O_TEXT 0 | |
267 #endif | |
268 | |
11942
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
269 /* Fix up the AT_* macros. */ |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
270 |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
271 /* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive. Its |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
272 value exceeds INT_MAX, so its use as an int doesn't conform to the |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
273 C standard, and GCC and Sun C complain in some cases. If the bug |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
274 is present, undef AT_FDCWD here, so it can be redefined below. */ |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
275 #if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553 |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
276 # undef AT_FDCWD |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
277 #endif |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
278 |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
279 /* Use the same bit pattern as Solaris 9, but with the proper |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
280 signedness. The bit pattern is important, in case this actually is |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
281 Solaris with the above workaround. */ |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
282 #ifndef AT_FDCWD |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
283 # define AT_FDCWD (-3041965) |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
284 #endif |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
285 |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
286 /* Use the same values as Solaris 9. This shouldn't matter, but |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
287 there's no real reason to differ. */ |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
288 #ifndef AT_SYMLINK_NOFOLLOW |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
289 # define AT_SYMLINK_NOFOLLOW 4096 |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
290 #endif |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
291 |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
292 #ifndef AT_REMOVEDIR |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
293 # define AT_REMOVEDIR 1 |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
294 #endif |
d1047ae4b8d5
openat: declare in POSIX headers
Eric Blake <ebb9@byu.net>
parents:
11933
diff
changeset
|
295 |
11945 | 296 /* Solaris 9 lacks these two, so just pick unique values. */ |
297 #ifndef AT_SYMLINK_FOLLOW | |
298 # define AT_SYMLINK_FOLLOW 2 | |
299 #endif | |
300 | |
301 #ifndef AT_EACCESS | |
302 # define AT_EACCESS 4 | |
303 #endif | |
304 | |
9247 | 305 |
306 #endif /* _GL_FCNTL_H */ | |
307 #endif /* _GL_FCNTL_H */ | |
10533
d4b37870fdc9
Override open more carefully.
Bruno Haible <bruno@clisp.org>
parents:
10528
diff
changeset
|
308 #endif |