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.
17 lines
328 B
17 lines
328 B
|
|
/*
|
|
* Parse symbolic events/counts passed in as options:
|
|
*/
|
|
|
|
extern int nr_counters;
|
|
|
|
extern struct perf_counter_attr attrs[MAX_COUNTERS];
|
|
|
|
extern char *event_name(int ctr);
|
|
|
|
extern int parse_events(const struct option *opt, const char *str, int unset);
|
|
|
|
#define EVENTS_HELP_MAX (128*1024)
|
|
|
|
extern void print_events(void);
|
|
|
|
|