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