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.
|
#ifndef __PERF_REGS_H
|
|
#define __PERF_REGS_H
|
|
|
|
#ifdef HAVE_PERF_REGS
|
|
#include <perf_regs.h>
|
|
#else
|
|
#define PERF_REGS_MASK 0
|
|
|
|
static inline const char *perf_reg_name(int id __maybe_unused)
|
|
{
|
|
return NULL;
|
|
}
|
|
#endif /* HAVE_PERF_REGS */
|
|
#endif /* __PERF_REGS_H */
|
|
|