mailing list of musl libc
 help / color / mirror / code / Atom feed
adbd4e62ac46c1fab8d96c0f19df759582fd89c8 blob 942 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
 
#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)
{
	return __syscall(SYS_clock_gettime, clk, ts);
}

static int sc_gettimeofday(clockid_t clk, struct timespec *ts)
{
	if (clk != CLOCK_REALTIME)
		return EINVAL;
	__syscall(SYS_gettimeofday, ts, 0);
	ts->tv_nsec = (int)ts->tv_nsec * 1000;
	return 0;
}

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

int __clock_gettime(clockid_t clk, struct timespec *ts)
{
	static int (*cgt)(clockid_t, struct timespec *);
	if (!cgt) {
		int (*f)(clockid_t, struct timespec *) = 0;
#ifdef VDSO_CGT_SYM
		f = __vdsosym(VDSO_CGT_VER, VDSO_CGT_SYM);
#endif
		if (!f) {
			int r = sc_clock_gettime(clk, ts);
			if (r == -ENOSYS) {
				f = sc_gettimeofday;
			} else {
				a_cas_p(&cgt, 0, sc_clock_gettime);
				return r;
			}
		}
		a_cas_p(&cgt, 0, f);
	}
	return cgt(clk, ts);
}
debug log:

solving adbd4e6 ...
found adbd4e6 in https://inbox.vuxu.org/musl/e055ebf55ff719cd25cb1446a642c8c032475223.1409524413.git.Jens.Gustedt@inria.fr/

applying [1/1] https://inbox.vuxu.org/musl/e055ebf55ff719cd25cb1446a642c8c032475223.1409524413.git.Jens.Gustedt@inria.fr/
diff --git a/src/time/__clock_gettime.c b/src/time/__clock_gettime.c
new file mode 100644
index 0000000..adbd4e6

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

index at:
100644 adbd4e62ac46c1fab8d96c0f19df759582fd89c8	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).