perf hists browser: Move hist_browser into header file
[deliverable/linux.git] / tools / perf / ui / browsers / hists.h
CommitLineData
f758990f
JO
1#ifndef _PERF_UI_BROWSER_HISTS_H_
2#define _PERF_UI_BROWSER_HISTS_H_ 1
3
4#include "ui/browser.h"
5
6struct hist_browser {
7 struct ui_browser b;
8 struct hists *hists;
9 struct hist_entry *he_selection;
10 struct map_symbol *selection;
11 struct hist_browser_timer *hbt;
12 struct pstack *pstack;
13 struct perf_env *env;
14 int print_seq;
15 bool show_dso;
16 bool show_headers;
17 float min_pcnt;
18 u64 nr_non_filtered_entries;
19 u64 nr_hierarchy_entries;
20 u64 nr_callchain_rows;
21};
22
23#endif /* _PERF_UI_BROWSER_HISTS_H_ */
This page took 0.028101 seconds and 5 git commands to generate.