1 /* Copyright (C) 1995-2017 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
21 #include <sys/timex.h>
23 #define MAX_SEC (INT_MAX / 1000000L - 2)
24 #define MIN_SEC (INT_MIN / 1000000L + 2)
31 #define TIMEVAL timeval
39 #define ADJTIME __adjtime
43 #define NO_LOCAL_ADJTIME
44 #define ADJTIMEX(x) __adjtimex (x)
52 ADJTIME (const struct TIMEVAL
*itv
, struct TIMEVAL
*otv
)
60 /* We will do some check here. */
61 tmp
.tv_sec
= itv
->tv_sec
+ itv
->tv_usec
/ 1000000L;
62 tmp
.tv_usec
= itv
->tv_usec
% 1000000L;
63 if (tmp
.tv_sec
> MAX_SEC
|| tmp
.tv_sec
< MIN_SEC
)
64 return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL
);
65 tntx
.offset
= tmp
.tv_usec
+ tmp
.tv_sec
* 1000000L;
66 tntx
.modes
= ADJ_OFFSET_SINGLESHOT
;
69 tntx
.modes
= ADJ_OFFSET_SS_READ
;
71 if (__glibc_unlikely (ADJTIMEX (&tntx
) < 0))
78 otv
->tv_usec
= -(-tntx
.offset
% 1000000);
79 otv
->tv_sec
= -(-tntx
.offset
/ 1000000);
83 otv
->tv_usec
= tntx
.offset
% 1000000;
84 otv
->tv_sec
= tntx
.offset
/ 1000000;
90 #ifdef NO_LOCAL_ADJTIME
91 weak_alias (__adjtime
, adjtime
)