hash-set: Add tests.
[gnulib.git] / doc / posix-functions / open.texi
blob6cf22c2f62dc95daa41fa092b8ce6051289ffdc8
1 @node open
2 @section @code{open}
3 @findex open
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/open.html}
7 Gnulib module: open, fchdir
9 Portability problems fixed by the Gnulib module @code{open}:
10 @itemize
11 @item
12 Some platforms do not support @code{O_CLOEXEC}:
13 Mac OS X 10.5, FreeBSD 6.0, NetBSD 5.0, OpenBSD 3.8, Minix 3.1.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, MSVC 14, Interix 3.5.
14 @item
15 On platforms where @code{off_t} is a 32-bit type, @code{open} may not work
16 correctly with files larger than 2 GB.  (Cf. @code{AC_SYS_LARGEFILE}.)
17 @item
18 This function does not fail when the file name argument ends in a slash
19 and (without the slash) names a nonexistent file or a file that is not a
20 directory, on some platforms:
21 FreeBSD 7.2, AIX 7.1, HP-UX 11.00, Solaris 9, Irix 5.3.
22 @item
23 This function does not support the @code{O_NONBLOCK} flag when it is defined
24 by the gnulib module @code{nonblocking} on some platforms:
25 mingw, MSVC 14.
26 @item
27 On Windows platforms (excluding Cygwin), this function does usually not
28 recognize the @file{/dev/null} filename.
29 @end itemize
31 Portability problems fixed by the Gnulib module @code{fchdir}:
32 @itemize
33 @item
34 On Windows platforms (excluding Cygwin), this function fails to open a
35 read-only descriptor for directories.
36 @end itemize
38 Portability problems not fixed by Gnulib:
39 @itemize
40 @item
41 The Gnulib replacement for @code{O_CLOEXEC} is not atomic, and so is
42 not safe in the presence of multiple threads or signal handlers.
43 @item
44 @code{open ("symlink", O_NOFOLLOW ...)} fails with @code{errno} set to
45 @code{EMLINK} instead of the POSIX-required @code{ELOOP} on some
46 platforms:
47 FreeBSD 10.1.
48 @item
49 @code{open ("symlink", O_NOFOLLOW ...)} fails with @code{errno} set to
50 @code{EFTYPE} instead of the POSIX-required @code{ELOOP} on some
51 platforms:
52 NetBSD 6.1.
53 @item
54 On Windows, this function returns a file handle in @code{O_TEXT} mode by
55 default; this means that it translates @code{'\n'} to CR/LF by default.  Use the
56 @code{O_BINARY} flag if you need reliable binary I/O.
57 @end itemize