mailing list of musl libc
 help / color / mirror / code / Atom feed
9d3ff7e92ad8450a624bcdfd018b687ee8f87724 blob 950 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
 
#include <time.h>
#include <errno.h>
#include <stdint.h>
#include "syscall.h"
#include "libc.h"
#include "atomic.h"

static int sc_clock_gettime(clockid_t clk, struct timespec *ts)
{
	int r = __syscall(SYS_clock_gettime, clk, ts);
	if (!r) return r;
	if (r == -ENOSYS) {
		if (clk == CLOCK_REALTIME) {
			__syscall(SYS_gettimeofday, ts, 0);
			ts->tv_nsec = (int)ts->tv_nsec * 1000;
			return 0;
		}
		r = -EINVAL;
	}
	errno = -r;
	return -1;
}

void *__vdsosym(const char *, const char *);

int __clock_gettime(clockid_t clk, struct timespec *ts)
{
#ifdef VDSO_CGT_SYM
	int r;
	static int (*volatile cgt)(clockid_t, struct timespec *);
	if (!cgt) {
		void *f = __vdsosym(VDSO_CGT_VER, VDSO_CGT_SYM);
		if (!f) f = (void *)sc_clock_gettime;
		a_cas_p(&cgt, 0, f);
	}
	r = cgt(clk, ts);
	/* In case an error occurred try the normal syscall */
	if (!r) return r;
#endif
	return sc_clock_gettime(clk, ts);
}

weak_alias(__clock_gettime, clock_gettime);
debug log:

solving 9d3ff7e ...
found 9d3ff7e in https://inbox.vuxu.org/musl/1453839994-7649-1-git-send-email-hauke@hauke-m.de/
found 1572de0 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 1572de0ef0029eb94b53a9928cd0a9fc57684d6a	src/time/clock_gettime.c

applying [1/1] https://inbox.vuxu.org/musl/1453839994-7649-1-git-send-email-hauke@hauke-m.de/
diff --git a/src/time/clock_gettime.c b/src/time/clock_gettime.c
index 1572de0..9d3ff7e 100644

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

index at:
100644 9d3ff7e92ad8450a624bcdfd018b687ee8f87724	src/time/clock_gettime.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).