merge open variants
[trinity.git] / syscalls / prlimit64.c
blob7da115912fc26fd45ce80b16df6f3f124316487d
1 /*
2 * SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource,
3 const struct rlimit64 __user *, new_rlim,
4 struct rlimit64 __user *, old_rlim)
5 */
6 #include "sanitise.h"
8 struct syscallentry syscall_prlimit64 = {
9 .name = "prlimit64",
10 .num_args = 4,
11 .arg1name = "pid",
12 .arg1type = ARG_PID,
13 .arg2name = "resource",
14 .arg3name = "new_rlim",
15 .arg3type = ARG_ADDRESS,
16 .arg4name = "old_rlim",
17 .arg4type = ARG_ADDRESS,