Refresh 01-gnulib-directory.patch
[gnulib.git] / doc / posix-functions / dup2.texi
1 @node dup2
2 @section @code{dup2}
3 @findex dup2
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dup2.html}
6
7 Gnulib module: dup2 or dup2-obsolete
8
9 Portability problems fixed by either Gnulib module @code{dup2} or @code{dup2-obsolete}:
10 @itemize
11 @item
12 This function always returns 0 for success on some platforms:
13 mingw.
14
15 @item
16 This function can hang when duplicating an fd to itself on some platforms:
17 mingw.
18
19 @item
20 This function resets the @code{FD_CLOEXEC} flag when duplicating an fd
21 to itself on some platforms:
22 Haiku.
23
24 @item
25 This function returns 0 for @code{dup2 (1, 1)} on some platforms:
26 Cygwin 1.5.x.
27
28 @item
29 This function may return @code{-EBADF} instead of @code{-1} on some platforms:
30 Linux releases between July 2008 and May 2009 (versions 2.6.27 to 2.6.29).
31
32 @item
33 This function returns @code{EMFILE} instead of @code{EBADF} for
34 extremely large targets, which interferes with using
35 @code{dup2(fd,fd)==fd)} as the minimal @code{EBADF} filter:
36 FreeBSD 6.1, Cygwin 1.5.
37 @end itemize
38
39 Portability problems fixed by Gnulib module @code{dup2-obsolete}:
40 @itemize
41 @item
42 This function is missing on some older platforms.
43 @end itemize
44
45 Portability problems not fixed by Gnulib:
46 @itemize
47 @end itemize