aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/util/trace-event.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/util/trace-event.h b/tools/perf/util/trace-event.h
index b85ee55cca0c..bce5b1dac268 100644
--- a/tools/perf/util/trace-event.h
+++ b/tools/perf/util/trace-event.h
@@ -65,6 +65,7 @@ int tracing_data_put(struct tracing_data *tdata);
65struct addr_location; 65struct addr_location;
66 66
67struct perf_session; 67struct perf_session;
68struct perf_stat_config;
68 69
69struct scripting_ops { 70struct scripting_ops {
70 const char *name; 71 const char *name;
@@ -75,6 +76,9 @@ struct scripting_ops {
75 struct perf_sample *sample, 76 struct perf_sample *sample,
76 struct perf_evsel *evsel, 77 struct perf_evsel *evsel,
77 struct addr_location *al); 78 struct addr_location *al);
79 void (*process_stat)(struct perf_stat_config *config,
80 struct perf_evsel *evsel, u64 tstamp);
81 void (*process_stat_interval)(u64 tstamp);
78 int (*generate_script) (struct pevent *pevent, const char *outfile); 82 int (*generate_script) (struct pevent *pevent, const char *outfile);
79}; 83};
80 84