blob: 9172613028d00f4ccca3a836f8585dfe7b8fcf9b [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __PERF_SYSCALLTBL_H
3#define __PERF_SYSCALLTBL_H
4
5struct syscalltbl {
6 union {
7 int audit_machine;
8 struct {
David Brazdil0f672f62019-12-10 10:32:29 +00009 int max_id;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000010 int nr_entries;
11 void *entries;
12 } syscalls;
13 };
14};
15
16struct syscalltbl *syscalltbl__new(void);
17void syscalltbl__delete(struct syscalltbl *tbl);
18
19const char *syscalltbl__name(const struct syscalltbl *tbl, int id);
20int syscalltbl__id(struct syscalltbl *tbl, const char *name);
21
22int syscalltbl__strglobmatch_first(struct syscalltbl *tbl, const char *syscall_glob, int *idx);
23int syscalltbl__strglobmatch_next(struct syscalltbl *tbl, const char *syscall_glob, int *idx);
24
25#endif /* __PERF_SYSCALLTBL_H */