diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2014-08-15 15:08:37 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-08-22 12:12:11 -0400 |
commit | d445dd2a78eed884adf3b3426b078fe69d2516d8 (patch) | |
tree | 8c312a298537c1bfd9903e61807bd52f67e8687c /tools/perf/util/scripting-engines/trace-event-python.c | |
parent | d44bc558297222d9a621fff2eca3f880e91c49f7 (diff) |
perf scripting: Add 'flush' callback to scripting API
In order to defer some output via the scripting API, there needs to be a
callback after session processing but before the session is deleted.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1408129739-17368-3-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/scripting-engines/trace-event-python.c')
-rw-r--r-- | tools/perf/util/scripting-engines/trace-event-python.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/util/scripting-engines/trace-event-python.c b/tools/perf/util/scripting-engines/trace-event-python.c index 26e5f14239ed..56ba07cce549 100644 --- a/tools/perf/util/scripting-engines/trace-event-python.c +++ b/tools/perf/util/scripting-engines/trace-event-python.c | |||
@@ -639,6 +639,11 @@ error: | |||
639 | return err; | 639 | return err; |
640 | } | 640 | } |
641 | 641 | ||
642 | static int python_flush_script(void) | ||
643 | { | ||
644 | return 0; | ||
645 | } | ||
646 | |||
642 | /* | 647 | /* |
643 | * Stop trace script | 648 | * Stop trace script |
644 | */ | 649 | */ |
@@ -823,6 +828,7 @@ static int python_generate_script(struct pevent *pevent, const char *outfile) | |||
823 | struct scripting_ops python_scripting_ops = { | 828 | struct scripting_ops python_scripting_ops = { |
824 | .name = "Python", | 829 | .name = "Python", |
825 | .start_script = python_start_script, | 830 | .start_script = python_start_script, |
831 | .flush_script = python_flush_script, | ||
826 | .stop_script = python_stop_script, | 832 | .stop_script = python_stop_script, |
827 | .process_event = python_process_event, | 833 | .process_event = python_process_event, |
828 | .generate_script = python_generate_script, | 834 | .generate_script = python_generate_script, |