diff options
Diffstat (limited to 'tools/perf/util/hist.h')
-rw-r--r-- | tools/perf/util/hist.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/perf/util/hist.h b/tools/perf/util/hist.h index 1b18d04195dc..1c5f93ac5ab7 100644 --- a/tools/perf/util/hist.h +++ b/tools/perf/util/hist.h | |||
@@ -44,4 +44,19 @@ void hists__output_resort(struct hists *self); | |||
44 | void hists__collapse_resort(struct hists *self); | 44 | void hists__collapse_resort(struct hists *self); |
45 | size_t hists__fprintf(struct hists *self, struct hists *pair, | 45 | size_t hists__fprintf(struct hists *self, struct hists *pair, |
46 | bool show_displacement, FILE *fp); | 46 | bool show_displacement, FILE *fp); |
47 | |||
48 | void hists__filter_by_dso(struct hists *self, const struct dso *dso); | ||
49 | void hists__filter_by_thread(struct hists *self, const struct thread *thread); | ||
50 | |||
51 | #ifdef NO_NEWT_SUPPORT | ||
52 | static inline int hists__browse(struct hists self __used, | ||
53 | const char *helpline __used, | ||
54 | const char *input_name __used) | ||
55 | { | ||
56 | return 0; | ||
57 | } | ||
58 | #else | ||
59 | int hists__browse(struct hists *self, const char *helpline, | ||
60 | const char *input_name); | ||
61 | #endif | ||
47 | #endif /* __PERF_HIST_H */ | 62 | #endif /* __PERF_HIST_H */ |