1 /* SPDX-License-Identifier: GPL-2.0 */
7 #include <sys/syscall.h>
8 #include <linux/compiler.h>
10 struct perf_event_attr;
13 sys_perf_event_open(struct perf_event_attr *attr,
14 pid_t pid, int cpu, int group_fd,
17 return syscall(__NR_perf_event_open, attr, pid, cpu,
21 #endif /* _PERF_SYS_H */