]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/util/syscalltbl.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / tools / perf / util / syscalltbl.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
fd0db102
ACM
2#ifndef __PERF_SYSCALLTBL_H
3#define __PERF_SYSCALLTBL_H
4
5struct syscalltbl {
6 union {
7 int audit_machine;
5af56fab
ACM
8 struct {
9 int nr_entries;
10 void *entries;
11 } syscalls;
fd0db102
ACM
12 };
13};
14
15struct syscalltbl *syscalltbl__new(void);
16void syscalltbl__delete(struct syscalltbl *tbl);
17
18const char *syscalltbl__name(const struct syscalltbl *tbl, int id);
19int syscalltbl__id(struct syscalltbl *tbl, const char *name);
20
89be3f8a
ACM
21int syscalltbl__strglobmatch_first(struct syscalltbl *tbl, const char *syscall_glob, int *idx);
22int syscalltbl__strglobmatch_next(struct syscalltbl *tbl, const char *syscall_glob, int *idx);
23
fd0db102 24#endif /* __PERF_SYSCALLTBL_H */