Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __PERF_SYSCALLTBL_H
3#define __PERF_SYSCALLTBL_H
4
5const char *syscalltbl__name(int e_machine, int id);
6int syscalltbl__id(int e_machine, const char *name);
7int syscalltbl__num_idx(int e_machine);
8int syscalltbl__id_at_idx(int e_machine, int idx);
9
10int syscalltbl__strglobmatch_first(int e_machine, const char *syscall_glob, int *idx);
11int syscalltbl__strglobmatch_next(int e_machine, const char *syscall_glob, int *idx);
12
13#endif /* __PERF_SYSCALLTBL_H */