diff options
Diffstat (limited to 'tools/perf/util/event.h')
| -rw-r--r-- | tools/perf/util/event.h | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index 50a7132887f..a33b94952e3 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h @@ -99,6 +99,15 @@ struct events_stats {  	u64 lost;  }; +struct event_stat_id { +	struct rb_node		rb_node; +	struct rb_root		hists; +	struct events_stats	stats; +	u64			config; +	u64			event_stream; +	u32			type; +}; +  void event__print_totals(void);  struct perf_session;  |