Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | #ifndef __PERF_SYSCALLTBL_H |
| 3 | #define __PERF_SYSCALLTBL_H |
| 4 | |
| 5 | struct syscalltbl { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 6 | int audit_machine; |
| 7 | struct { |
| 8 | int max_id; |
| 9 | int nr_entries; |
| 10 | void *entries; |
| 11 | } syscalls; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 12 | }; |
| 13 | |
| 14 | struct syscalltbl *syscalltbl__new(void); |
| 15 | void syscalltbl__delete(struct syscalltbl *tbl); |
| 16 | |
| 17 | const char *syscalltbl__name(const struct syscalltbl *tbl, int id); |
| 18 | int syscalltbl__id(struct syscalltbl *tbl, const char *name); |
| 19 | |
| 20 | int syscalltbl__strglobmatch_first(struct syscalltbl *tbl, const char *syscall_glob, int *idx); |
| 21 | int syscalltbl__strglobmatch_next(struct syscalltbl *tbl, const char *syscall_glob, int *idx); |
| 22 | |
| 23 | #endif /* __PERF_SYSCALLTBL_H */ |