1 /* SPDX-License-Identifier: GPL-2.0 */ << 2 #ifndef __PERF_SYSCALLTBL_H 1 #ifndef __PERF_SYSCALLTBL_H 3 #define __PERF_SYSCALLTBL_H 2 #define __PERF_SYSCALLTBL_H 4 3 5 struct syscalltbl { 4 struct syscalltbl { 6 int audit_machine; !! 5 union { 7 struct { !! 6 int audit_machine; 8 int max_id; !! 7 struct { 9 int nr_entries; !! 8 int nr_entries; 10 void *entries; !! 9 void *entries; 11 } syscalls; !! 10 } syscalls; >> 11 }; 12 }; 12 }; 13 13 14 struct syscalltbl *syscalltbl__new(void); 14 struct syscalltbl *syscalltbl__new(void); 15 void syscalltbl__delete(struct syscalltbl *tbl 15 void syscalltbl__delete(struct syscalltbl *tbl); 16 16 17 const char *syscalltbl__name(const struct sysc 17 const char *syscalltbl__name(const struct syscalltbl *tbl, int id); 18 int syscalltbl__id(struct syscalltbl *tbl, con 18 int syscalltbl__id(struct syscalltbl *tbl, const char *name); 19 int syscalltbl__id_at_idx(struct syscalltbl *t << 20 << 21 int syscalltbl__strglobmatch_first(struct sysc << 22 int syscalltbl__strglobmatch_next(struct sysca << 23 19 24 #endif /* __PERF_SYSCALLTBL_H */ 20 #endif /* __PERF_SYSCALLTBL_H */ 25 21
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.