2 * SYSCALL_DEFINE1(adjtimex, struct timex __user *, txc_p
4 * On success, adjtimex() returns the clock state: */
6 #define TIME_OK 0 /* clock synchronized */
7 #define TIME_INS 1 /* insert leap second */
8 #define TIME_DEL 2 /* delete leap second */
9 #define TIME_OOP 3 /* leap second in progress */
10 #define TIME_WAIT 4 /* leap second has occurred */
11 #define TIME_BAD 5 /* clock not synchronized */
13 /* On failure, adjtimex() returns -1 and sets errno. */
17 struct syscallentry syscall_adjtimex
= {
21 .arg1type
= ARG_ADDRESS
,