mailing list of musl libc
 help / color / mirror / code / Atom feed
b6dbef04fad1fcdca059511bdddc0292930e2cb6 blob 573 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
 
#include <time.h>
#include <errno.h>
#include "syscall.h"

#define IS32BIT(x) !((x)+0x80000000ULL>>32)

int clock_settime(clockid_t clk, const struct timespec *ts)
{
#ifdef SYS_clock_settime64
	time_t s = ts->tv_sec;
	long ns = ts->tv_nsec;
	int r = __syscall(SYS_clock_settime64, clk,
		((long long[]){s, ns}));
	if (SYS_clock_settime == SYS_clock_settime64 || r!=-ENOSYS)
		return __syscall_ret(r);
	if (!IS32BIT(s))
		return __syscall_ret(-ENOTSUP);
	return syscall(SYS_clock_settime, clk, ((long[]){s, ns}));
#else
	return syscall(SYS_clock_settime, clk, ts);
#endif
}
debug log:

solving b6dbef04fad1 ...
found b6dbef04fad1 in https://inbox.vuxu.org/musl/20201227184032.22413-2-alobakin@pm.me/
found 1004ed152846 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 1004ed15284621129789270d0f97e30c5c462095	src/time/clock_settime.c

applying [1/1] https://inbox.vuxu.org/musl/20201227184032.22413-2-alobakin@pm.me/
diff --git a/src/time/clock_settime.c b/src/time/clock_settime.c
index 1004ed152846..b6dbef04fad1 100644

Checking patch src/time/clock_settime.c...
Applied patch src/time/clock_settime.c cleanly.

index at:
100644 b6dbef04fad1fcdca059511bdddc0292930e2cb6	src/time/clock_settime.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).