diff options
author | Ingo Molnar <mingo@kernel.org> | 2013-10-29 06:23:32 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-10-29 06:23:32 -0400 |
commit | aac898548d04c7bff179b79f805874b0d6f87571 (patch) | |
tree | e8de975fd5de6c95bf4329861a872dbcfe0c7ead /tools/perf/util/hist.h | |
parent | 2f5e98802350627ad6f2e3cee4d177059fc0c2f2 (diff) | |
parent | cd65718712469ad844467250e8fad20a5838baae (diff) |
Merge branch 'perf/urgent' into perf/core
Conflicts:
tools/perf/builtin-record.c
tools/perf/builtin-top.c
tools/perf/util/hist.h
Diffstat (limited to 'tools/perf/util/hist.h')
-rw-r--r-- | tools/perf/util/hist.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/perf/util/hist.h b/tools/perf/util/hist.h index 0c7ce8bb8eba..9d2d022cdb79 100644 --- a/tools/perf/util/hist.h +++ b/tools/perf/util/hist.h | |||
@@ -5,6 +5,7 @@ | |||
5 | #include <pthread.h> | 5 | #include <pthread.h> |
6 | #include "callchain.h" | 6 | #include "callchain.h" |
7 | #include "header.h" | 7 | #include "header.h" |
8 | #include "color.h" | ||
8 | #include "ui/progress.h" | 9 | #include "ui/progress.h" |
9 | 10 | ||
10 | extern struct callchain_param callchain_param; | 11 | extern struct callchain_param callchain_param; |
@@ -180,6 +181,18 @@ void perf_hpp__init(void); | |||
180 | void perf_hpp__column_register(struct perf_hpp_fmt *format); | 181 | void perf_hpp__column_register(struct perf_hpp_fmt *format); |
181 | void perf_hpp__column_enable(unsigned col); | 182 | void perf_hpp__column_enable(unsigned col); |
182 | 183 | ||
184 | static inline size_t perf_hpp__use_color(void) | ||
185 | { | ||
186 | return !symbol_conf.field_sep; | ||
187 | } | ||
188 | |||
189 | static inline size_t perf_hpp__color_overhead(void) | ||
190 | { | ||
191 | return perf_hpp__use_color() ? | ||
192 | (COLOR_MAXLEN + sizeof(PERF_COLOR_RESET)) * PERF_HPP__MAX_INDEX | ||
193 | : 0; | ||
194 | } | ||
195 | |||
183 | struct perf_evlist; | 196 | struct perf_evlist; |
184 | 197 | ||
185 | struct hist_browser_timer { | 198 | struct hist_browser_timer { |