You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
398 B
12 lines
398 B
#if defined(__aarch64__)
|
|
#include "../../arch/arm64/include/uapi/asm/bpf_perf_event.h"
|
|
#elif defined(__arc__)
|
|
#include "../../arch/arc/include/uapi/asm/bpf_perf_event.h"
|
|
#elif defined(__s390__)
|
|
#include "../../arch/s390/include/uapi/asm/bpf_perf_event.h"
|
|
#elif defined(__riscv)
|
|
#include "../../arch/riscv/include/uapi/asm/bpf_perf_event.h"
|
|
#else
|
|
#include <uapi/asm-generic/bpf_perf_event.h>
|
|
#endif
|