mailing list of musl libc
 help / color / mirror / code / Atom feed
75e5435f18b06455fa3b1d47a32017e823b35ea4 blob 473 bytes (raw)

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

int __timerfd_gettime32(int t, struct itimerspec32 *val32)
{
	struct itimerspec old;
	int r = timerfd_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 75e5435f ...
found 75e5435f 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).