timex.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /* Copyright (C) 1995-2017 Free Software Foundation, Inc.
  2. The GNU C Library is free software; you can redistribute it and/or
  3. modify it under the terms of the GNU Lesser General Public
  4. License as published by the Free Software Foundation; either
  5. version 2.1 of the License, or (at your option) any later version.
  6. The GNU C Library is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  9. Lesser General Public License for more details.
  10. You should have received a copy of the GNU Lesser General Public
  11. License along with the GNU C Library; if not, see
  12. <http://www.gnu.org/licenses/>. */
  13. #ifndef _SYS_TIMEX_H
  14. #define _SYS_TIMEX_H 1
  15. #include <features.h>
  16. #include <sys/time.h>
  17. #include <time.h>
  18. /* These definitions from linux/timex.h as of 3.18. */
  19. struct ntptimeval
  20. {
  21. struct timeval time; /* current time (ro) */
  22. long int maxerror; /* maximum error (us) (ro) */
  23. long int esterror; /* estimated error (us) (ro) */
  24. long int tai; /* TAI offset (ro) */
  25. };
  26. struct timex
  27. {
  28. unsigned int modes; /* mode selector */
  29. long int offset; /* time offset (usec) */
  30. long int freq; /* frequency offset (scaled ppm) */
  31. long int maxerror; /* maximum error (usec) */
  32. long int esterror; /* estimated error (usec) */
  33. int status; /* clock command/status */
  34. long int constant; /* pll time constant */
  35. long int precision; /* clock precision (usec) (read only) */
  36. long int tolerance; /* clock frequency tolerance (ppm) (read only) */
  37. struct timeval time; /* (read only) */
  38. long int tick; /* (modified) usecs between clock ticks */
  39. long int ppsfreq; /* pps frequency (scaled ppm) (ro) */
  40. long int jitter; /* pps jitter (us) (ro) */
  41. int shift; /* interval duration (s) (shift) (ro) */
  42. long int stabil; /* pps stability (scaled ppm) (ro) */
  43. long int jitcnt; /* jitter limit exceeded (ro) */
  44. long int calcnt; /* calibration intervals (ro) */
  45. long int errcnt; /* calibration errors (ro) */
  46. long int stbcnt; /* stability limit exceeded (ro) */
  47. int tai; /* TAI offset (ro) */
  48. /* ??? */
  49. int :32; int :32; int :32; int :32;
  50. int :32; int :32; int :32; int :32;
  51. int :32; int :32; int :32; int :32;
  52. };
  53. /* Mode codes (timex.mode) */
  54. #define ADJ_OFFSET 0x0001 /* time offset */
  55. #define ADJ_FREQUENCY 0x0002 /* frequency offset */
  56. #define ADJ_MAXERROR 0x0004 /* maximum time error */
  57. #define ADJ_ESTERROR 0x0008 /* estimated time error */
  58. #define ADJ_STATUS 0x0010 /* clock status */
  59. #define ADJ_TIMECONST 0x0020 /* pll time constant */
  60. #define ADJ_TAI 0x0080 /* set TAI offset */
  61. #define ADJ_MICRO 0x1000 /* select microsecond resolution */
  62. #define ADJ_NANO 0x2000 /* select nanosecond resolution */
  63. #define ADJ_TICK 0x4000 /* tick value */
  64. #define ADJ_OFFSET_SINGLESHOT 0x8001 /* old-fashioned adjtime */
  65. #define ADJ_OFFSET_SS_READ 0xa001 /* read-only adjtime */
  66. /* xntp 3.4 compatibility names */
  67. #define MOD_OFFSET ADJ_OFFSET
  68. #define MOD_FREQUENCY ADJ_FREQUENCY
  69. #define MOD_MAXERROR ADJ_MAXERROR
  70. #define MOD_ESTERROR ADJ_ESTERROR
  71. #define MOD_STATUS ADJ_STATUS
  72. #define MOD_TIMECONST ADJ_TIMECONST
  73. #define MOD_CLKB ADJ_TICK
  74. #define MOD_CLKA ADJ_OFFSET_SINGLESHOT /* 0x8000 in original */
  75. #define MOD_TAI ADJ_TAI
  76. #define MOD_MICRO ADJ_MICRO
  77. #define MOD_NANO ADJ_NANO
  78. /* Status codes (timex.status) */
  79. #define STA_PLL 0x0001 /* enable PLL updates (rw) */
  80. #define STA_PPSFREQ 0x0002 /* enable PPS freq discipline (rw) */
  81. #define STA_PPSTIME 0x0004 /* enable PPS time discipline (rw) */
  82. #define STA_FLL 0x0008 /* select frequency-lock mode (rw) */
  83. #define STA_INS 0x0010 /* insert leap (rw) */
  84. #define STA_DEL 0x0020 /* delete leap (rw) */
  85. #define STA_UNSYNC 0x0040 /* clock unsynchronized (rw) */
  86. #define STA_FREQHOLD 0x0080 /* hold frequency (rw) */
  87. #define STA_PPSSIGNAL 0x0100 /* PPS signal present (ro) */
  88. #define STA_PPSJITTER 0x0200 /* PPS signal jitter exceeded (ro) */
  89. #define STA_PPSWANDER 0x0400 /* PPS signal wander exceeded (ro) */
  90. #define STA_PPSERROR 0x0800 /* PPS signal calibration error (ro) */
  91. #define STA_CLOCKERR 0x1000 /* clock hardware fault (ro) */
  92. #define STA_NANO 0x2000 /* resolution (0 = us, 1 = ns) (ro) */
  93. #define STA_MODE 0x4000 /* mode (0 = PLL, 1 = FLL) (ro) */
  94. #define STA_CLK 0x8000 /* clock source (0 = A, 1 = B) (ro) */
  95. #define STA_RONLY (STA_PPSSIGNAL | STA_PPSJITTER | STA_PPSWANDER | \
  96. STA_PPSERROR | STA_CLOCKERR | STA_NANO | STA_MODE | STA_CLK)
  97. /* Clock states (time_state) */
  98. #define TIME_OK 0 /* clock synchronized, no leap second */
  99. #define TIME_INS 1 /* insert leap second */
  100. #define TIME_DEL 2 /* delete leap second */
  101. #define TIME_OOP 3 /* leap second in progress */
  102. #define TIME_WAIT 4 /* leap second has occurred */
  103. #define TIME_ERROR 5 /* clock not synchronized */
  104. #define TIME_BAD TIME_ERROR /* bw compat */
  105. /* Maximum time constant of the PLL. */
  106. #define MAXTC 6
  107. __BEGIN_DECLS
  108. extern int __adjtimex (struct timex *__ntx) __THROW;
  109. extern int adjtimex (struct timex *__ntx) __THROW;
  110. libc_hidden_proto(adjtimex)
  111. #if defined __UCLIBC_NTP_LEGACY__
  112. extern int ntp_gettime (struct ntptimeval *__ntv) __THROW;
  113. extern int ntp_adjtime (struct timex *__tntx) __THROW;
  114. #endif
  115. #if defined __UCLIBC_HAS_REALTIME__
  116. extern int clock_adjtime (clockid_t __clock_id, struct timex *__ntx) __THROW;
  117. #endif
  118. __END_DECLS
  119. #endif /* sys/timex.h */