blob: e6b396e1599eb570eb8ee756fb63e8c9110b332a (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* vi: set sw=4 ts=4: */
/*
* settimeofday() for uClibc
*
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#ifdef __USE_BSD
# include <sys/time.h>
# ifdef __NR_settimeofday
_syscall2(int, settimeofday, const struct timeval *, tv,
const struct timezone *, tz)
# elif defined __USE_SVID && defined __NR_stime
# define __need_NULL
# include <stddef.h>
# include <errno.h>
# include <time.h>
int settimeofday(const struct timeval *tv, const struct timezone *tz)
{
time_t when;
if (tv == NULL) {
__set_errno(EINVAL);
return -1;
}
if (tz != NULL || tv->tv_usec % 1000000 != 0) {
__set_errno(ENOSYS);
return -1;
}
when = tv->tv_sec + (tv->tv_usec / 1000000);
return stime(&when);
}
# endif
# if defined __NR_settimeofday || (defined __USE_SVID && defined __NR_stime)
libc_hidden_def(settimeofday)
# endif
#endif
|