aboutsummaryrefslogtreecommitdiffstats
path: root/executor/syscalls.h
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2015-11-29 13:19:10 +0100
committerDmitry Vyukov <dvyukov@google.com>2015-11-29 13:19:10 +0100
commit81de33fab197a1df741ae6dc660238c78603a72f (patch)
tree173e3c74e0fe0a706be0ed9f229341d39d9e4fe5 /executor/syscalls.h
parentb94cd3038a6b1841d008690a83ed14cc0f3ff89c (diff)
add perf ioctl's
Diffstat (limited to 'executor/syscalls.h')
-rw-r--r--executor/syscalls.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/executor/syscalls.h b/executor/syscalls.h
index 6ed06f83a..cd920df23 100644
--- a/executor/syscalls.h
+++ b/executor/syscalls.h
@@ -549,4 +549,13 @@ call_t syscalls[] = {
{"bpf$OBJ_GET_MAP", __NR_bpf},
{"bpf$OBJ_GET_PROG", __NR_bpf},
{"perf_event_open", __NR_perf_event_open},
+ {"ioctl$PERF_EVENT_IOC_ENABLE", __NR_ioctl},
+ {"ioctl$PERF_EVENT_IOC_DISABLE", __NR_ioctl},
+ {"ioctl$PERF_EVENT_IOC_RESET", __NR_ioctl},
+ {"ioctl$PERF_EVENT_IOC_REFRESH", __NR_ioctl},
+ {"ioctl$PERF_EVENT_IOC_PERIOD", __NR_ioctl},
+ {"ioctl$PERF_EVENT_IOC_ID", __NR_ioctl},
+ {"ioctl$PERF_EVENT_IOC_SET_OUTPUT", __NR_ioctl},
+ {"ioctl$PERF_EVENT_IOC_SET_FILTER", __NR_ioctl},
+ {"ioctl$PERF_EVENT_IOC_SET_BPF", __NR_ioctl},
};