md5, sha1, sha256, sha512: add gl_SET_CRYPTO_CHECK_DEFAULT
[gnulib.git] / doc / posix-functions / popen.texi
1 @node popen
2 @section @code{popen}
3 @findex popen
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/popen.html}
6
7 Gnulib module: popen
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function is missing on some platforms:
13 MSVC 9.
14 @item
15 Some platforms start the child with closed stdin or stdout if the
16 standard descriptors were closed in the parent:
17 Cygwin 1.5.x.
18 @end itemize
19
20 Portability problems not fixed by Gnulib:
21 @itemize
22 @item
23 On native Windows platforms, this functions terminates the current process
24 with exit code 127 if the environment variable @code{COMSPEC} is not set.
25 @item
26 Some platforms mistakenly set the close-on-exec bit, then if it is
27 cleared by the application, the platform then leaks file descriptors
28 from earlier @code{popen} calls into subsequent @code{popen} children:
29 Cygwin 1.5.x.
30 @end itemize