2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / adjtime.c
blobebd2149705ab022a17ee671573530cb13825efa9
1 /* Copyright (C) 1995, 1996, 1997, 1998, 2002, 2004, 2007, 2008
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <limits.h>
22 #include <sys/time.h>
23 #include <sys/timex.h>
25 #include <kernel-features.h>
27 #define MAX_SEC (INT_MAX / 1000000L - 2)
28 #define MIN_SEC (INT_MIN / 1000000L + 2)
30 #ifndef MOD_OFFSET
31 #define modes mode
32 #endif
34 #ifndef TIMEVAL
35 #define TIMEVAL timeval
36 #endif
38 #ifndef TIMEX
39 #define TIMEX timex
40 #endif
42 #ifndef ADJTIME
43 #define ADJTIME __adjtime
44 #endif
46 #ifndef ADJTIMEX
47 #define NO_LOCAL_ADJTIME
48 #define ADJTIMEX(x) INTUSE(__adjtimex) (x)
49 extern int INTUSE(__adjtimex) (struct timex *__ntx);
50 #endif
52 #ifndef LINKAGE
53 #define LINKAGE
54 #endif
56 LINKAGE int
57 ADJTIME (const struct TIMEVAL *itv, struct TIMEVAL *otv)
59 struct TIMEX tntx;
61 if (itv)
63 struct TIMEVAL tmp;
65 /* We will do some check here. */
66 tmp.tv_sec = itv->tv_sec + itv->tv_usec / 1000000L;
67 tmp.tv_usec = itv->tv_usec % 1000000L;
68 if (tmp.tv_sec > MAX_SEC || tmp.tv_sec < MIN_SEC)
70 __set_errno (EINVAL);
71 return -1;
73 tntx.offset = tmp.tv_usec + tmp.tv_sec * 1000000L;
74 tntx.modes = ADJ_OFFSET_SINGLESHOT;
76 else
78 #ifdef ADJ_OFFSET_SS_READ
79 tntx.modes = ADJ_OFFSET_SS_READ;
80 #else
81 tntx.modes = 0;
82 #endif
85 #if defined ADJ_OFFSET_SS_READ && !defined __ASSUME_ADJ_OFFSET_SS_READ
86 again:
87 #endif
88 if (__builtin_expect (ADJTIMEX (&tntx) < 0, 0))
90 #if defined ADJ_OFFSET_SS_READ && !defined __ASSUME_ADJ_OFFSET_SS_READ
91 if (itv && errno == EINVAL && tntx.modes == ADJ_OFFSET_SS_READ)
93 tntx.modes = ADJ_OFFSET_SINGLESHOT;
94 goto again;
96 #endif
97 return -1;
100 if (otv)
102 if (tntx.offset < 0)
104 otv->tv_usec = -(-tntx.offset % 1000000);
105 otv->tv_sec = -(-tntx.offset / 1000000);
107 else
109 otv->tv_usec = tntx.offset % 1000000;
110 otv->tv_sec = tntx.offset / 1000000;
113 return 0;
116 #ifdef NO_LOCAL_ADJTIME
117 weak_alias (__adjtime, adjtime)
118 #endif