forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/tools/perf/ui/browsers/hists.h
....@@ -5,6 +5,7 @@
55 #include "ui/browser.h"
66
77 struct annotation_options;
8
+struct evsel;
89
910 struct hist_browser {
1011 struct ui_browser b;
....@@ -15,6 +16,7 @@
1516 struct pstack *pstack;
1617 struct perf_env *env;
1718 struct annotation_options *annotation_opts;
19
+ struct evsel *block_evsel;
1820 int print_seq;
1921 bool show_dso;
2022 bool show_headers;
....@@ -32,7 +34,7 @@
3234 struct hist_browser *hist_browser__new(struct hists *hists);
3335 void hist_browser__delete(struct hist_browser *browser);
3436 int hist_browser__run(struct hist_browser *browser, const char *help,
35
- bool warn_lost_event);
37
+ bool warn_lost_event, int key);
3638 void hist_browser__init(struct hist_browser *browser,
3739 struct hists *hists);
3840 #endif /* _PERF_UI_BROWSER_HISTS_H_ */