aboutsummaryrefslogtreecommitdiffstats
path: root/executor/syscalls.h
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2015-10-13 17:21:32 +0200
committerDmitry Vyukov <dvyukov@google.com>2015-10-13 20:13:40 +0200
commit9706b099e7f8bee19843e384e7606eebbfefd703 (patch)
treed1044750252120ed63ee4cccd44a76168b5668b1 /executor/syscalls.h
parent8b78c985ab446105f3d3f4f6f5783f1ee9128b32 (diff)
describe sysfs and ioprio syscalls
Diffstat (limited to 'executor/syscalls.h')
-rw-r--r--executor/syscalls.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/executor/syscalls.h b/executor/syscalls.h
index 144ae7975..d2e71ee7b 100644
--- a/executor/syscalls.h
+++ b/executor/syscalls.h
@@ -231,7 +231,9 @@ call_t syscalls[] = {
{"mount", __NR_mount},
{"umount2", __NR_umount2},
{"pivot_root", __NR_pivot_root},
- {"sysfs", __NR_sysfs},
+ {"sysfs$1", __NR_sysfs},
+ {"sysfs$2", __NR_sysfs},
+ {"sysfs$3", __NR_sysfs},
{"statfs", __NR_statfs},
{"fstatfs", __NR_fstatfs},
{"uselib", __NR_uselib},
@@ -251,8 +253,10 @@ call_t syscalls[] = {
{"prlimit64", __NR_prlimit64},
{"iopl", __NR_iopl},
{"ioperm", __NR_ioperm},
- {"ioprio_get", __NR_ioprio_get},
- {"ioprio_set", __NR_ioprio_set},
+ {"ioprio_get$pid", __NR_ioprio_get},
+ {"ioprio_get$uid", __NR_ioprio_get},
+ {"ioprio_set$pid", __NR_ioprio_set},
+ {"ioprio_set$uid", __NR_ioprio_set},
{"setns", __NR_setns},
{"setxattr", __NR_setxattr},
{"lsetxattr", __NR_lsetxattr},