split up constants.h some
[trinity.git] / syscalls / getgroups.c
blobb6ffde496af52a506ca4a794aab260a0e2e83a26
1 /*
2 * SYSCALL_DEFINE2(getgroups, int, gidsetsize, gid_t __user *, grouplist)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_getgroups = {
7 .name = "getgroups",
8 .num_args = 2,
9 .arg1name = "gidsetsize",
10 .arg2type = ARG_ADDRESS,
11 .arg2name = "grouplist",
12 .rettype = RET_BORING,
17 * SYSCALL_DEFINE2(getgroups16, int, gidsetsize, old_gid_t __user *, grouplist)
20 struct syscallentry syscall_getgroups16 = {
21 .name = "getgroups16",
22 .num_args = 2,
23 .arg1name = "gidsetsize",
24 .arg2type = ARG_ADDRESS,
25 .arg2name = "grouplist",
26 .rettype = RET_BORING,