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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
 
#include "time32.h"
#include <time.h>

int __timer_gettime32(timer_t t, struct itimerspec32 *val32)
{
	struct itimerspec old;
	int r = timer_gettime(t, &old);
	if (r) return r;
	/* No range checking for consistency with settime */
	val32->it_interval.tv_sec = old.it_interval.tv_sec;
	val32->it_interval.tv_nsec = old.it_interval.tv_nsec;
	val32->it_value.tv_sec = old.it_value.tv_sec;
	val32->it_value.tv_nsec = old.it_value.tv_nsec;
	return 0;
}
debug log:

solving b4184cc2 ...
found b4184cc2 in https://git.vuxu.org/mirror/musl/

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).