blob: c555509c826a51d89a2ab322b1e3722fb9cb989a (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/* Internal declarations for sys/timex.h.
Copyright (C) 2014-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#ifndef _INCLUDE_SYS_TIMEX_H
#define _INCLUDE_SYS_TIMEX_H 1
#include_next <sys/timex.h>
# ifndef _ISOMAC
libc_hidden_proto (__adjtimex)
# include <struct___timeval64.h>
/* Local definition of 64 bit time supporting timex struct */
# if __TIMESIZE == 64
# define __timex64 timex
# else
struct __timex64
{
unsigned int modes; /* mode selector */
int :32; /* pad */
long long int offset; /* time offset (usec) */
long long int freq; /* frequency offset (scaled ppm) */
long long int maxerror; /* maximum error (usec) */
long long int esterror; /* estimated error (usec) */
int status; /* clock command/status */
int :32; /* pad */
long long int constant; /* pll time constant */
long long int precision; /* clock precision (usec) (read only) */
long long int tolerance; /* clock frequency tolerance (ppm) (ro) */
struct __timeval64 time; /* (read only, except for ADJ_SETOFFSET) */
long long int tick; /* (modified) usecs between clock ticks */
long long int ppsfreq; /* pps frequency (scaled ppm) (ro) */
long long int jitter; /* pps jitter (us) (ro) */
int shift; /* interval duration (s) (shift) (ro) */
int :32; /* pad */
long long int stabil; /* pps stability (scaled ppm) (ro) */
long long int jitcnt; /* jitter limit exceeded (ro) */
long long int calcnt; /* calibration intervals (ro) */
long long int errcnt; /* calibration errors (ro) */
long long int stbcnt; /* stability limit exceeded (ro) */
int tai; /* TAI offset (ro) */
int :32;
int :32;
int :32;
int :32;
int :32;
int :32;
int :32;
int :32;
int :32;
int :32;
int :32;
};
# endif
# endif /* _ISOMAC */
#endif /* sys/timex.h */
|