diff options
| author | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-27 21:38:44 +0200 | 
|---|---|---|
| committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-27 21:38:44 +0200 | 
| commit | a5352e212fcd4da83c8ff4fe542ef23c8e3187f8 (patch) | |
| tree | 016dd4cf4a39ddef717a1de7f7ace0305ffa0e75 /include/sys | |
| parent | 91b2dfd68f5aecc290a449905aa7456f27f10326 (diff) | |
| parent | c6e8f34a358f846aa15cb9f53251da3d6668abd1 (diff) | |
Merge remote-tracking branch 'origin/upstream'
Diffstat (limited to 'include/sys')
| -rw-r--r-- | include/sys/timex.h | 13 | 
1 files changed, 10 insertions, 3 deletions
diff --git a/include/sys/timex.h b/include/sys/timex.h index 621afce62..57059bd14 100644 --- a/include/sys/timex.h +++ b/include/sys/timex.h @@ -20,6 +20,7 @@  #include <features.h>  #include <sys/time.h> +#include <time.h>  /* These definitions from linux/timex.h as of 2.2.0.  */ @@ -66,8 +67,12 @@ struct timex  #define ADJ_ESTERROR		0x0008	/* estimated time error */  #define ADJ_STATUS		0x0010	/* clock status */  #define ADJ_TIMECONST		0x0020	/* pll time constant */ -#define ADJ_TICK		0x4000	/* tick value */ -#define ADJ_OFFSET_SINGLESHOT	0x8001	/* old-fashioned adjtime */ +#define ADJ_TAI			0x0080  /* set TAI offset */ +#define ADJ_MICRO		0x1000  /* select microsecond resolution */ +#define ADJ_NANO		0x2000  /* select nanosecond resolution */ +#define ADJ_TICK		0x4000  /* tick value */ +#define ADJ_OFFSET_SINGLESHOT	0x8001  /* old-fashioned adjtime */ +#define ADJ_OFFSET_SS_READ	0xa001  /* read-only adjtime */  /* xntp 3.4 compatibility names */  #define MOD_OFFSET	ADJ_OFFSET @@ -125,7 +130,9 @@ libc_hidden_proto(adjtimex)  extern int ntp_gettime (struct ntptimeval *__ntv) __THROW;  extern int ntp_adjtime (struct timex *__tntx) __THROW;  #endif - +#if defined __UCLIBC_HAS_REALTIME__ +extern int clock_adjtime (clockid_t __clock_id, struct timex *__ntx) __THROW; +#endif  __END_DECLS  #endif /* sys/timex.h */  | 
