fcntl-h: fix O_ACCMODE on cygwin
[gnulib.git] / doc / posix-headers / fcntl.texi
1 @node fcntl.h
2 @section @file{fcntl.h}
3
4 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/basedefs/fcntl.h.html}
5
6 Gnulib module: fcntl-h
7
8 Portability problems fixed by Gnulib:
9 @itemize
10 @item
11 @samp{O_CLOEXEC}, @samp{O_DIRECTORY}, @samp{O_DSYNC}, @samp{O_NOCTTY},
12 @samp{O_NOFOLLOW}, @samp{O_RSYNC}, @samp{O_SYNC},
13 and @samp{O_TTY_INIT} are not defined on some platforms.  Gnulib defines
14 these macros to 0, which is generally safe.
15
16 @item
17 @samp{O_NONBLOCK} is not defined on some platforms.  If the
18 @samp{nonblocking} module is in use, gnulib guarantees a working
19 non-zero value; otherwise, the gnulib replacement is 0.
20
21 @item
22 @samp{O_EXEC} and @samp{O_SEARCH} are not defined on some platforms.
23 Gnulib defines these macros to @samp{O_RDONLY}, which is typically 0.
24
25 @item
26 The @samp{O_ACCMODE} mask mistakenly omits @samp{O_SEARCH} and
27 @samp{O_EXEC} on some platforms:
28 Cygwin.
29
30 @item
31 @samp{O_BINARY}, @samp{O_TEXT} (not specified by POSIX, but essential for
32 portability to Woe32 platforms) are defined on some platforms but not on
33 others.
34
35 @item
36 @samp{O_DIRECT}, @samp{O_NDELAY}, @samp{O_NOATIME},
37 and @samp{O_NOLINKS} (not specified by POSIX) are defined
38 on some platforms but not on others.
39
40 @item
41 @samp{FD_CLOEXEC}, @samp{F_DUPFD}, and @samp{F_GETFD} are not defined
42 on some platforms:
43 mingw.
44
45 @item
46 @samp{F_DUPFD_CLOEXEC} is not defined on some platforms:
47 MacOS X 10.5, FreeBSD 6.0, NetBSD 5.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
48 IRIX 6.5, OSF/1 5.1, Solaris 11 2010-11, Cygwin 1.7.1, mingw, Interix 3.5,
49 BeOS.
50
51 @item
52 @samp{AT_FDCWD}, @samp{AT_EACCESS}, @samp{AT_SYMLINK_NOFOLLOW},
53 @samp{AT_SYMLINK_FOLLOW}, and @samp{AT_REMOVEDIR}
54 are not defined on many platforms:
55 glibc 2.3.6, MacOS X 10.5, FreeBSD 6.0, NetBSD 5.0, OpenBSD 3.8, AIX
56 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 8, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
57
58 @item
59 @samp{AT_FDCWD} is defined with a value too large for an @code{int} on some
60 platforms:
61 Solaris 11 2010-11.
62 @end itemize
63
64 Portability problems not fixed by Gnulib:
65 @itemize
66 @item
67 @samp{F_SETFD}, @samp{F_GETFL}, @samp{F_SETFL}, @samp{F_GETLK},
68 @samp{F_SETLK}, @samp{F_SETLOKW}, @samp{F_GETOWN}, and @samp{F_SETOWN}
69 are not defined on some platforms:
70 mingw.
71
72 @item
73 @samp{POSIX_FADV_DONTNEED}, @samp{POSIX_FADV_NOREUSE},
74 @samp{POSIX_FADV_NORMAL}, @samp{POSIX_FADV_RANDOM},
75 @samp{POSIX_FADV_SEQUENTIAL}, and @samp{POSIX_FADV_WILLNEED} are not
76 defined on some platforms.
77 @end itemize