mailing list of musl libc
 help / color / mirror / code / Atom feed
34c3d48707690a2129075d3ac058f65b320333c3 blob 944 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 
#include <stdio.h>
#include <fcntl.h>
#include "stdio_impl.h"
#include "pthread_impl.h"

#define MAXTRIES 100

char *__randname(char *);

FILE *tmpfile(void)
{
#ifdef O_TMPFILE
	int fd;
	FILE *f = 0;
	fd = sys_open("/tmp", O_RDWR|O_TMPFILE);
	if (fd >= 0) {
		f = __fdopen(fd, "w+");
		if (!f) __syscall(SYS_close, fd);
	}
	return f;
#else
	char s[] = "/tmp/tmpfile_XXXXXX";
	FILE *f = 0;
	int fd;
	int try;
	sigset_t saved_mask;

	pthread_sigmask(SIG_SETMASK, SIGALL_SET, &saved_mask);
	for (try=0; try<MAXTRIES; try++) {
		__randname(s+13);
		fd = sys_open(s, O_RDWR|O_CREAT|O_EXCL, 0600);
		if (fd >= 0) {
#ifdef SYS_unlink
			__syscall(SYS_unlink, s);
#else
			__syscall(SYS_unlinkat, AT_FDCWD, s, 0);
#endif
			pthread_sigmask(SIG_SETMASK, &saved_mask, 0);
			f = __fdopen(fd, "w+");
			if (!f) __syscall(SYS_close, fd);
			return f;
		}
	}
	pthread_sigmask(SIG_SETMASK, &saved_mask, 0);
	return 0;
#endif /*O_TMPFILE*/
}

LFS64(tmpfile);
debug log:

solving 34c3d487 ...
found 34c3d487 in https://inbox.vuxu.org/musl/1c4f252e-9c13-9d52-f966-a186216a8396@gmail.com/
found 525090aa in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 525090aa066d49cc20a4a762b17a4d54a3ec1b4f	src/stdio/tmpfile.c

applying [1/1] https://inbox.vuxu.org/musl/1c4f252e-9c13-9d52-f966-a186216a8396@gmail.com/
diff --git a/src/stdio/tmpfile.c b/src/stdio/tmpfile.c
index 525090aa..34c3d487 100644

Checking patch src/stdio/tmpfile.c...
Applied patch src/stdio/tmpfile.c cleanly.

index at:
100644 34c3d48707690a2129075d3ac058f65b320333c3	src/stdio/tmpfile.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).