Home | History | Annotate | Download | only in timers

Lines Matching defs:tx

30 	struct timex tx;
32 memset(&tx, 0, sizeof(tx));
34 tx.modes = ADJ_TAI;
35 tx.constant = offset;
37 return adjtimex(&tx);
42 struct timex tx;
44 memset(&tx, 0, sizeof(tx));
46 adjtimex(&tx);
47 return tx.tai;