add new renameat2 syscall
[trinity.git] / syscalls / init_module.c
blob1b7f0faa0fa0c436a0bf3e7b9bccb7d76bf091d3
1 /*
2 * SYSCALL_DEFINE3(init_module, void __user *, umod,
3 unsigned long, len, const char __user *, uargs)
4 */
5 #include "sanitise.h"
7 struct syscallentry syscall_init_module = {
8 .name = "init_module",
9 .num_args = 3,
10 .arg1name = "umod",
11 .arg1type = ARG_ADDRESS,
12 .arg2name = "len",
13 .arg2type = ARG_LEN,
14 .arg3name = "uargs",
15 .arg3type = ARG_ADDRESS,