diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2019-07-10 11:58:06 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-07-10 18:34:09 +0300 |
commit | 5bf83c29a0ad2e78683c318b607539dbadbf7a3b (patch) | |
tree | 1a32308d45d0ae3eeead2f4143a9cc6c8877d26f /tools/perf/util | |
parent | 26c11206f433ea507a7541f48cb472b85870577e (diff) | |
download | linux-5bf83c29a0ad2e78683c318b607539dbadbf7a3b.tar.xz |
perf script: Add scripting operation process_switch()
Add scripting operation process_switch() to process switch events.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: http://lkml.kernel.org/r/20190710085810.1650-18-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util')
-rw-r--r-- | tools/perf/util/trace-event.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/util/trace-event.h b/tools/perf/util/trace-event.h index d9b0a942090a..c7002fe11673 100644 --- a/tools/perf/util/trace-event.h +++ b/tools/perf/util/trace-event.h @@ -81,6 +81,9 @@ struct scripting_ops { struct perf_sample *sample, struct perf_evsel *evsel, struct addr_location *al); + void (*process_switch)(union perf_event *event, + struct perf_sample *sample, + struct machine *machine); void (*process_stat)(struct perf_stat_config *config, struct perf_evsel *evsel, u64 tstamp); void (*process_stat_interval)(u64 tstamp); |