mirror of
https://github.com/sheumann/hush.git
synced 2024-12-26 10:32:02 +00:00
- provide fallback defines for non-linux
This commit is contained in:
parent
01d23ade57
commit
b21d23bd46
@ -44,9 +44,23 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <sys/time.h>
|
||||||
#include <sys/timex.h>
|
#include <sys/timex.h>
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
|
||||||
|
#if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
|
||||||
|
#define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
|
||||||
|
#endif
|
||||||
|
#if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
|
||||||
|
#define ADJ_FREQUENCY MOD_FREQUENCY
|
||||||
|
#endif
|
||||||
|
#if !defined ADJ_TIMECONST && defined MOD_TIMECONST
|
||||||
|
#define ADJ_TIMECONST MOD_TIMECONST
|
||||||
|
#endif
|
||||||
|
#if !defined ADJ_TICK && defined MOD_CLKB
|
||||||
|
#define ADJ_TICK MOD_CLKB
|
||||||
|
#endif
|
||||||
|
|
||||||
static const struct {int bit; const char *name;} statlist[] = {
|
static const struct {int bit; const char *name;} statlist[] = {
|
||||||
{ STA_PLL, "PLL" },
|
{ STA_PLL, "PLL" },
|
||||||
{ STA_PPSFREQ, "PPSFREQ" },
|
{ STA_PPSFREQ, "PPSFREQ" },
|
||||||
|
Loading…
Reference in New Issue
Block a user