diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-07-21 14:31:24 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-08-06 16:02:51 -0300 |
commit | 5821522e9484a8b503f89aa546085900b99589e9 (patch) | |
tree | 6147173cfef853545b6890d42938e0e4574c3f83 /tools/perf/util | |
parent | 711a572ea8ae7e9ab6575403c6d632d058d5cb3d (diff) | |
download | linux-5821522e9484a8b503f89aa546085900b99589e9.tar.bz2 |
perf stat: Move 'output' into struct perf_stat_config
Moving 'output' into struct perf_stat_config. The point is to centralize
the base stat config so it could be used localy together with other stat
routines in other parts of perf code.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1437481927-29538-5-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util')
-rw-r--r-- | tools/perf/util/stat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/stat.h b/tools/perf/util/stat.h index 0a1d83faa7b9..ed0e05829cb0 100644 --- a/tools/perf/util/stat.h +++ b/tools/perf/util/stat.h @@ -53,6 +53,7 @@ struct perf_counts { struct perf_stat_config { enum aggr_mode aggr_mode; bool scale; + FILE *output; }; static inline struct perf_counts_values* |