Fix up <sys/timex.h> a bit more for recent API changes.
[glibc.git] / sysdeps / unix / sysv / linux / sys / timex.h
blob88b87f1089eb8087c850b023c19137da312eda40
1 /* Copyright (C) 1995-1997, 1999, 2007, 2009 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, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #ifndef _SYS_TIMEX_H
20 #define _SYS_TIMEX_H 1
22 #include <features.h>
23 #include <sys/time.h>
25 /* These definitions from linux/timex.h as of 2.6.30. */
27 struct ntptimeval
29 struct timeval time; /* current time (ro) */
30 long int maxerror; /* maximum error (us) (ro) */
31 long int esterror; /* estimated error (us) (ro) */
34 struct timex
36 unsigned int modes; /* mode selector */
37 long int offset; /* time offset (usec) */
38 long int freq; /* frequency offset (scaled ppm) */
39 long int maxerror; /* maximum error (usec) */
40 long int esterror; /* estimated error (usec) */
41 int status; /* clock command/status */
42 long int constant; /* pll time constant */
43 long int precision; /* clock precision (usec) (read only) */
44 long int tolerance; /* clock frequency tolerance (ppm) (read only) */
45 struct timeval time; /* (read only) */
46 long int tick; /* (modified) usecs between clock ticks */
48 long int ppsfreq; /* pps frequency (scaled ppm) (ro) */
49 long int jitter; /* pps jitter (us) (ro) */
50 int shift; /* interval duration (s) (shift) (ro) */
51 long int stabil; /* pps stability (scaled ppm) (ro) */
52 long int jitcnt; /* jitter limit exceeded (ro) */
53 long int calcnt; /* calibration intervals (ro) */
54 long int errcnt; /* calibration errors (ro) */
55 long int stbcnt; /* stability limit exceeded (ro) */
57 int tai; /* TAI offset (ro) */
59 /* ??? */
60 int :32; int :32; int :32; int :32;
61 int :32; int :32; int :32; int :32;
62 int :32; int :32; int :32;
65 /* Mode codes (timex.mode) */
66 #define ADJ_OFFSET 0x0001 /* time offset */
67 #define ADJ_FREQUENCY 0x0002 /* frequency offset */
68 #define ADJ_MAXERROR 0x0004 /* maximum time error */
69 #define ADJ_ESTERROR 0x0008 /* estimated time error */
70 #define ADJ_STATUS 0x0010 /* clock status */
71 #define ADJ_TIMECONST 0x0020 /* pll time constant */
72 #define ADJ_TAI 0x0080 /* set TAI offset */
73 #define ADJ_MICRO 0x1000 /* select microsecond resolution */
74 #define ADJ_NANO 0x2000 /* select nanosecond resolution */
75 #define ADJ_TICK 0x4000 /* tick value */
76 #define ADJ_OFFSET_SINGLESHOT 0x8001 /* old-fashioned adjtime */
77 #define ADJ_OFFSET_SS_READ 0xa001 /* read-only adjtime */
79 /* xntp 3.4 compatibility names */
80 #define MOD_OFFSET ADJ_OFFSET
81 #define MOD_FREQUENCY ADJ_FREQUENCY
82 #define MOD_MAXERROR ADJ_MAXERROR
83 #define MOD_ESTERROR ADJ_ESTERROR
84 #define MOD_STATUS ADJ_STATUS
85 #define MOD_TIMECONST ADJ_TIMECONST
86 #define MOD_CLKB ADJ_TICK
87 #define MOD_CLKA ADJ_OFFSET_SINGLESHOT /* 0x8000 in original */
88 #define MOD_TAI ADJ_TAI
89 #define MOD_MICRO ADJ_MICRO
90 #define MOD_NANO ADJ_NANO
93 /* Status codes (timex.status) */
94 #define STA_PLL 0x0001 /* enable PLL updates (rw) */
95 #define STA_PPSFREQ 0x0002 /* enable PPS freq discipline (rw) */
96 #define STA_PPSTIME 0x0004 /* enable PPS time discipline (rw) */
97 #define STA_FLL 0x0008 /* select frequency-lock mode (rw) */
99 #define STA_INS 0x0010 /* insert leap (rw) */
100 #define STA_DEL 0x0020 /* delete leap (rw) */
101 #define STA_UNSYNC 0x0040 /* clock unsynchronized (rw) */
102 #define STA_FREQHOLD 0x0080 /* hold frequency (rw) */
104 #define STA_PPSSIGNAL 0x0100 /* PPS signal present (ro) */
105 #define STA_PPSJITTER 0x0200 /* PPS signal jitter exceeded (ro) */
106 #define STA_PPSWANDER 0x0400 /* PPS signal wander exceeded (ro) */
107 #define STA_PPSERROR 0x0800 /* PPS signal calibration error (ro) */
109 #define STA_CLOCKERR 0x1000 /* clock hardware fault (ro) */
110 #define STA_NANO 0x2000 /* resolution (0 = us, 1 = ns) (ro) */
111 #define STA_MODE 0x4000 /* mode (0 = PLL, 1 = FLL) (ro) */
112 #define STA_CLK 0x8000 /* clock source (0 = A, 1 = B) (ro) */
114 /* Read-only bits */
115 #define STA_RONLY (STA_PPSSIGNAL | STA_PPSJITTER | STA_PPSWANDER | \
116 STA_PPSERROR | STA_CLOCKERR | STA_NANO | STA_MODE | STA_CLK)
118 /* Clock states (time_state) */
119 #define TIME_OK 0 /* clock synchronized, no leap second */
120 #define TIME_INS 1 /* insert leap second */
121 #define TIME_DEL 2 /* delete leap second */
122 #define TIME_OOP 3 /* leap second in progress */
123 #define TIME_WAIT 4 /* leap second has occurred */
124 #define TIME_ERROR 5 /* clock not synchronized */
125 #define TIME_BAD TIME_ERROR /* bw compat */
127 /* Maximum time constant of the PLL. */
128 #define MAXTC 6
130 __BEGIN_DECLS
132 extern int __adjtimex (struct timex *__ntx) __THROW;
133 extern int adjtimex (struct timex *__ntx) __THROW;
135 extern int ntp_gettime (struct ntptimeval *__ntv) __THROW;
136 extern int ntp_adjtime (struct timex *__tntx) __THROW;
138 __END_DECLS
140 #endif /* sys/timex.h */