summaryrefslogtreecommitdiffstats
path: root/usr/klibc/settimeofday.c
blob: 75754db3c3298dd8faeda5d095b1096fcb5ac118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <time.h>
#include <sys/time.h>
#include <sys/syscall.h>

extern int __settimeofday(const void *, const struct timezone *);

int settimeofday(const struct timeval *tv, const struct timezone *tz)
{
	struct timespec ts;

	if (tz && __settimeofday(NULL, tz))
		return -1;

	if (tv) {
		ts.tv_sec = tv->tv_sec;
		ts.tv_nsec = tv->tv_usec * 1000;
		if (clock_settime(CLOCK_REALTIME, &ts))
			return -1;
	}

	return 0;
}