summaryrefslogtreecommitdiffstats
path: root/libc/stdlib/mkstemp.c
diff options
context:
space:
mode:
authorMikhail Gusarov <dottedmag@dottedmag.net>2009-11-08 02:33:15 +0600
committerAustin Foxley <austinf@cetoncorp.com>2009-11-09 14:39:02 -0800
commit7c5a18c19270347359fc14048900dadb45096817 (patch)
tree0dfa0d0733532d4c7342b32a12d1d34524197b9c /libc/stdlib/mkstemp.c
parent1d6f1b7c404c0929ebf6c5ef78185709de78e3a3 (diff)
downloaduClibc-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/stdlib/mkstemp.c')
-rw-r--r--libc/stdlib/mkstemp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdlib/mkstemp.c b/libc/stdlib/mkstemp.c
index c569ceaf5..ce7d7dba0 100644
--- a/libc/stdlib/mkstemp.c
+++ b/libc/stdlib/mkstemp.c
@@ -18,6 +18,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <sys/stat.h>
#include "../misc/internals/tempname.h"
/* Generate a unique temporary file name from TEMPLATE.
@@ -26,5 +27,5 @@
Then open the file and return a fd. */
int mkstemp (char *template)
{
- return __gen_tempname (template, __GT_FILE);
+ return __gen_tempname (template, __GT_FILE, S_IRUSR | S_IWUSR);
}