diff options
author | Namhyung Kim <namhyung@kernel.org> | 2014-02-06 22:06:07 -0500 |
---|---|---|
committer | Jiri Olsa <jolsa@redhat.com> | 2014-04-16 11:16:03 -0400 |
commit | 33db4568e1f41efe6d0e4695483f968fc1135bf3 (patch) | |
tree | 864186165ad27a133c773d36dd83b20cf5a19abc /tools/perf/util/hist.h | |
parent | f2148330544a697481219b5bc34261f6dd049bfb (diff) |
perf top: Add --percentage option
The --percentage option is for controlling overhead percentage
displayed. It can only receive either of "relative" or "absolute".
Move the parser callback function into a common location since it's
used by multiple commands now.
For more information, please see previous commit same thing done to
"perf report".
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1397145720-8063-4-git-send-email-namhyung@kernel.org
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Diffstat (limited to 'tools/perf/util/hist.h')
-rw-r--r-- | tools/perf/util/hist.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/util/hist.h b/tools/perf/util/hist.h index 3191496bd3b7..a4ec336ae3fe 100644 --- a/tools/perf/util/hist.h +++ b/tools/perf/util/hist.h | |||
@@ -254,4 +254,9 @@ static inline int script_browse(const char *script_opt __maybe_unused) | |||
254 | #endif | 254 | #endif |
255 | 255 | ||
256 | unsigned int hists__sort_list_width(struct hists *hists); | 256 | unsigned int hists__sort_list_width(struct hists *hists); |
257 | |||
258 | struct option; | ||
259 | int parse_filter_percentage(const struct option *opt __maybe_unused, | ||
260 | const char *arg, int unset __maybe_unused); | ||
261 | |||
257 | #endif /* __PERF_HIST_H */ | 262 | #endif /* __PERF_HIST_H */ |