/* * SYSCALL_DEFINE2(timerfd_gettime, int, ufd, struct itimerspec __user *, otmr) */ #include "sanitise.h" struct syscallentry syscall_timerfd_gettime = { .name = "timerfd_gettime", .num_args = 2, .arg1name = "ufd", .arg1type = ARG_FD, .arg2name = "otmr", .arg2type = ARG_ADDRESS, .flags = NEED_ALARM, }; .