mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 21:21:41 +00:00
8f18aec535
Brice Goglin reported: > I can easily sort them by thread id, but I don't know how to match > my 4 events with each group of 4 lines. Also report the counter id and the time running/enabled stats (in case the counter got time-shared). Reported-by: Brice Goglin <Brice.Goglin@inria.fr> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Tested-by: Brice Goglin <Brice.Goglin@inria.fr> Signed-off-by: Ingo Molnar <mingo@elte.hu>
24 lines
475 B
C
24 lines
475 B
C
|
|
/*
|
|
* Parse symbolic events/counts passed in as options:
|
|
*/
|
|
|
|
struct option;
|
|
|
|
extern int nr_counters;
|
|
|
|
extern struct perf_counter_attr attrs[MAX_COUNTERS];
|
|
|
|
extern char *event_name(int ctr);
|
|
extern char *__event_name(int type, u64 config);
|
|
|
|
extern int parse_events(const struct option *opt, const char *str, int unset);
|
|
|
|
#define EVENTS_HELP_MAX (128*1024)
|
|
|
|
extern void print_events(void);
|
|
|
|
extern char debugfs_path[];
|
|
extern int valid_debugfs_mount(const char *debugfs);
|
|
|