summaryrefslogtreecommitdiff
path: root/compat/time32/setitimer_time32.c
blob: 2475fd8c1110c78b21f15baf2e8a979e6861bc26 (plain) (blame)
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
#include "time32.h"
#include <time.h>
#include <sys/time.h>

int __setitimer_time32(int which, const struct itimerval32 *restrict new32, struct itimerval32 *restrict old32)
{
	struct itimerval old;
	int r = setitimer(which, (&(struct itimerval){
		.it_interval.tv_sec = new32->it_interval.tv_sec,
		.it_interval.tv_usec = new32->it_interval.tv_usec,
		.it_value.tv_sec = new32->it_value.tv_sec,
		.it_value.tv_usec = new32->it_value.tv_usec}), &old);
	if (r) return r;
	/* The above call has already committed to success by changing the
	 * timer setting, so we can't fail on out-of-range old value.
	 * Since these are relative times, values large enough to overflow
	 * don't make sense anyway. */
	if (old32) {
		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;
}