blob: e2951510484f88514b721c4c374da047f2ce4f11 [file] [log] [blame]
Arnaldo Carvalho de Melofd0db102016-04-04 13:32:20 -03001#ifndef __PERF_SYSCALLTBL_H
2#define __PERF_SYSCALLTBL_H
3
4struct syscalltbl {
5 union {
6 int audit_machine;
Arnaldo Carvalho de Melo5af56fa2016-04-04 17:52:18 -03007 struct {
8 int nr_entries;
9 void *entries;
10 } syscalls;
Arnaldo Carvalho de Melofd0db102016-04-04 13:32:20 -030011 };
12};
13
14struct syscalltbl *syscalltbl__new(void);
15void syscalltbl__delete(struct syscalltbl *tbl);
16
17const char *syscalltbl__name(const struct syscalltbl *tbl, int id);
18int syscalltbl__id(struct syscalltbl *tbl, const char *name);
19
20#endif /* __PERF_SYSCALLTBL_H */