fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
[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/susv3xbd/fcntl.h.html}
5
6 Gnulib module: fcntl-h
7
8 Portability problems fixed by Gnulib:
9 @itemize
10 @item
11 @samp{O_NOCTTY}, @samp{O_DSYNC}, @samp{O_NONBLOCK}, @samp{O_RSYNC},
12 @samp{O_SYNC}, @samp{O_DIRECTORY}, @samp{O_NOFOLLOW}, and
13 @samp{O_TTY_INIT} are not defined on some platforms.
14
15 @item
16 @samp{O_BINARY}, @samp{O_TEXT} (not specified by POSIX, but essential for
17 portability to Woe32 platforms) are defined on some platforms but not on
18 others.
19
20 @item
21 @samp{O_DIRECT}, @samp{O_NDELAY}, @samp{O_NOATIME},
22 and @samp{O_NOLINKS} (not specified by POSIX) are defined
23 on some platforms but not on others.
24
25 @item
26 @samp{FD_CLOEXEC} is not defined on some platforms:
27 mingw.
28
29 @item
30 @samp{F_DUPFD_CLOEXEC} is not defined on some platforms:
31 MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
32 IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.7.1, mingw, Interix 3.5,
33 BeOS.
34
35 @item
36 @samp{AT_FDCWD}, @samp{AT_EACCESS}, @samp{AT_SYMLINK_NOFOLLOW},
37 @samp{AT_SYMLINK_FOLLOW}, and @samp{AT_REMOVEDIR}
38 are not defined on many platforms:
39 glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
40 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 8, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
41
42 @item
43 @samp{AT_FDCWD} is defined with a value too large for an @code{int} on some
44 platforms:
45 Solaris 10.
46 @end itemize
47
48 Portability problems not fixed by Gnulib:
49 @itemize
50 @item
51 @samp{O_CLOEXEC} is not defined on some platforms.  The gnulib
52 replacement is not atomic on these platforms.
53
54 @item
55 @samp{O_SEARCH} and @samp{O_EXEC} are not defined
56 on some platforms.
57
58 @item
59 @samp{F_DUPFD} and @samp{F_GETFD} are not defined on some platforms:
60 mingw.
61
62 @item
63 @samp{F_SETFD}, @samp{F_GETFL}, @samp{F_SETFL}, @samp{F_GETLK},
64 @samp{F_SETLK}, @samp{F_SETLOKW}, @samp{F_GETOWN}, and @samp{F_SETOWN}
65 are not defined on some platforms:
66 mingw.
67
68 @item
69 @samp{POSIX_FADV_DONTNEED}, @samp{POSIX_FADV_NOREUSE},
70 @samp{POSIX_FADV_NORMAL}, @samp{POSIX_FADV_RANDOM},
71 @samp{POSIX_FADV_SEQUENTIAL}, and @samp{POSIX_FADV_WILLNEED} are not
72 defined on some platforms.
73 @end itemize