mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-05-13 15:13:36 +00:00
* lib/dup2.c: Include msvc-inval.h. (rpl_dup2): Handle invalid parameter notifications during dup2 and _get_osfhandle calls. * modules/dup2 (Depends-on): Add msvc-inval. * doc/posix-functions/dup2.texi: Mention problem on MSVC.
30 lines
426 B
Plaintext
30 lines
426 B
Plaintext
Description:
|
|
dup2() function: duplicate an open file descriptor.
|
|
|
|
Files:
|
|
lib/dup2.c
|
|
m4/dup2.m4
|
|
|
|
Depends-on:
|
|
unistd
|
|
dup2-obsolete
|
|
msvc-inval [test $HAVE_DUP2 = 0 || test $REPLACE_DUP2 = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_DUP2
|
|
if test $HAVE_DUP2 = 0 || test $REPLACE_DUP2 = 1; then
|
|
AC_LIBOBJ([dup2])
|
|
fi
|
|
gl_UNISTD_MODULE_INDICATOR([dup2])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<unistd.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Paul Eggert, Jim Meyering
|