diff options
author | Mikhail Gusarov <dottedmag@dottedmag.net> | 2009-11-08 02:33:15 +0600 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-09 14:39:02 -0800 |
commit | 7c5a18c19270347359fc14048900dadb45096817 (patch) | |
tree | 0dfa0d0733532d4c7342b32a12d1d34524197b9c /libc/stdio/tmpfile.c | |
parent | 1d6f1b7c404c0929ebf6c5ef78185709de78e3a3 (diff) | |
download | uClibc-alpine-7c5a18c19270347359fc14048900dadb45096817.tar.bz2 uClibc-alpine-7c5a18c19270347359fc14048900dadb45096817.tar.xz |
Extend __gen_tempname with mode argument
sem_open(3) needs to create a temporary file in a way which can't
be efficiently implemented in terms of POSIX API. Extend
__gen_tempname with mode_t mode argument in order to ease
sem_open implementation.
Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/stdio/tmpfile.c')
-rw-r--r-- | libc/stdio/tmpfile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdio/tmpfile.c b/libc/stdio/tmpfile.c index 57f252715..c6b2dc8a9 100644 --- a/libc/stdio/tmpfile.c +++ b/libc/stdio/tmpfile.c @@ -18,6 +18,7 @@ #include <features.h> #include <stdio.h> +#include <sys/stat.h> #include <unistd.h> #include "../misc/internals/tempname.h" #include <not-cancel.h> @@ -35,7 +36,7 @@ FILE * tmpfile (void) if (__path_search (buf, FILENAME_MAX, NULL, "tmpf", 0)) return NULL; - fd = __gen_tempname (buf, __GT_FILE); + fd = __gen_tempname (buf, __GT_FILE, S_IRUSR | S_IWUSR); if (fd < 0) return NULL; |