mailing list of musl libc
 help / color / mirror / code / Atom feed
4bac4bf5265704249e81424ece91f308471d7feb blob 415 bytes (raw)

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

int __getitimer_time32(int which, struct itimerval32 *old32)
{
	struct itimerval old;
	int r = getitimer(which, &old);
	if (r) return r;
	old32->it_interval.tv_sec = old.it_interval.tv_sec;
	old32->it_interval.tv_usec = old.it_interval.tv_usec;
	old32->it_value.tv_sec = old.it_value.tv_sec;
	old32->it_value.tv_usec = old.it_value.tv_usec;
	return 0;
}
debug log:

solving 4bac4bf5 ...
found 4bac4bf5 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).