remove [64] cleanup TODO
[trinity.git] / syscalls / adjtimex.c
blob271e020d933df930c37e668a131b818dac64f109
1 /*
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. */
15 #include "sanitise.h"
17 struct syscallentry syscall_adjtimex = {
18 .name = "adjtimex",
19 .num_args = 1,
20 .arg1name = "txc_p",
21 .arg1type = ARG_ADDRESS,