timer_gettime32.c\time32\compat - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/compat/time32/timer_gettime32.c
blob: b4184cc28374c984b406cb54829f9c4f62c6d61e (plain) (blame)
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;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月09日 14:32:40 +0000

AltStyle によって変換されたページ (->オリジナル) /