spawn-pipe: Allow caller to specify directory for the subprocess.
[gnulib.git] / doc / posix-functions / mkstemp.texi
blob0ec65f1b5831a3feac2971fcc27d6ba5210d5b75
1 @node mkstemp
2 @section @code{mkstemp}
3 @findex mkstemp
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/mkstemp.html}
7 Gnulib module: mkstemp
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function is missing on some platforms:
13 mingw, MSVC 14.
14 @item
15 On platforms where @code{off_t} is a 32-bit type, @code{mkstemp} may not work
16 correctly to create files larger than 2 GB@.  (Cf. @code{AC_SYS_LARGEFILE}.)
17 @item
18 On some older platforms, @code{mkstemp} can create a world or group
19 writable or readable file, if you haven't set the process umask to
20 077.  This is a security risk.
21 @end itemize
23 Portability problems not fixed by Gnulib:
24 @itemize
25 @end itemize
27 The gnulib module @code{clean-temp} can create temporary files that will not
28 be left behind after signals such as SIGINT.