merge newfstat variants
[trinity.git] / syscalls / timer_create.c
blob1bd0ee7f6c453053158aed95068e6ff583d6a75f
1 /*
2 * SYSCALL_DEFINE3(timer_create, const clockid_t, which_clock,
3 struct sigevent __user *, timer_event_spec,
4 timer_t __user *, created_timer_id)
5 */
6 #include "sanitise.h"
8 struct syscallentry syscall_timer_create = {
9 .name = "timer_create",
10 .num_args = 3,
11 .arg1name = "which_clock",
12 .arg2name = "timer_event_spec",
13 .arg2type = ARG_ADDRESS,
14 .arg3name = "create_timer_id",
15 .arg3type = ARG_ADDRESS,