2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

x86: syscalls -- Wire in sys_setgroups

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Acked-by: Tycho Andersen <tycho.andersen@canonical.com>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Cyrill Gorcunov
2015-12-17 12:14:09 +03:00
committed by Pavel Emelyanov
parent b64159acdd
commit 592f45b10f
2 changed files with 2 additions and 0 deletions

View File

@@ -52,6 +52,7 @@ __NR_capset 185 sys_capset (struct cap_header *h, struct cap_data *d)
__NR_sigaltstack 186 sys_sigaltstack (const void *uss_ptr, void *uoss_ptr)
__NR_mmap2 192 sys_mmap (void *addr, unsigned long len, unsigned long prot, unsigned long flags, unsigned long fd, unsigned long pgoff)
__NR_getgroups32 205 sys_getgroups (int gsize, unsigned int *groups)
__NR_setgroups32 206 sys_setgroups (int gsize, unsigned int *groups)
__NR_setresuid32 208 sys_setresuid (int uid, int euid, int suid)
__NR_getresuid32 209 sys_getresuid (int *uid, int *euid, int *suid)
__NR_setresgid32 210 sys_setresgid (int gid, int egid, int sgid)

View File

@@ -49,6 +49,7 @@ __NR_readlink 89 sys_readlink (const char *path, char *buf, int bufsize)
__NR_umask 95 sys_umask (int mask)
__NR_ptrace 101 sys_ptrace (long request, pid_t pid, void *addr, void *data)
__NR_getgroups 115 sys_getgroups (int gsize, unsigned int *groups)
__NR_setgroups 116 sys_setgroups (int gsize, unsigned int *groups)
__NR_setresuid 117 sys_setresuid (int uid, int euid, int suid)
__NR_getresuid 118 sys_getresuid (int *uid, int *euid, int *suid)
__NR_setresgid 119 sys_setresgid (int gid, int egid, int sgid)