summaryrefslogtreecommitdiff
path: root/tools/perf/util/syscalltbl.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/syscalltbl.h')
-rw-r--r--tools/perf/util/syscalltbl.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/perf/util/syscalltbl.h b/tools/perf/util/syscalltbl.h
new file mode 100644
index 000000000000..2bb628eff367
--- /dev/null
+++ b/tools/perf/util/syscalltbl.h
@@ -0,0 +1,13 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef __PERF_SYSCALLTBL_H
+#define __PERF_SYSCALLTBL_H
+
+const char *syscalltbl__name(int e_machine, int id);
+int syscalltbl__id(int e_machine, const char *name);
+int syscalltbl__num_idx(int e_machine);
+int syscalltbl__id_at_idx(int e_machine, int idx);
+
+int syscalltbl__strglobmatch_first(int e_machine, const char *syscall_glob, int *idx);
+int syscalltbl__strglobmatch_next(int e_machine, const char *syscall_glob, int *idx);
+
+#endif /* __PERF_SYSCALLTBL_H */