tmpnam.c\stdio\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdio/tmpnam.c
blob: 6099b74b4c80f261c14201d6c0f62eea010674c3 (plain) (blame)
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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include "libc.h"
#include "syscall.h"
#include "atomic.h"
#define MAXTRIES 100
char *tmpnam(char *s)
{
	static int index;
	static char s2[L_tmpnam];
	struct timespec ts;
	int try = 0;
	unsigned n;
	if (!s) s = s2;
	if (__syscall(SYS_access, P_tmpdir, R_OK|W_OK|X_OK) != 0)
		return NULL;
	do {
		__syscall(SYS_clock_gettime, CLOCK_REALTIME, &ts, 0);
		n = ts.tv_nsec ^ (unsigned)&s ^ (unsigned)s;
		snprintf(s, L_tmpnam, "/tmp/t%x-%x", a_fetch_add(&index, 1), n);
	} while (!__syscall(SYS_access, s, F_OK) && try++<MAXTRIES);
	return try==MAXTRIES ? 0 : s;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月11日 16:08:56 +0000

AltStyle によって変換されたページ (->オリジナル) /