perf hists browser: Move hist_browser into header file
authorJiri Olsa <jolsa@kernel.org>
Mon, 20 Jun 2016 21:58:13 +0000 (23:58 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 22 Jun 2016 12:56:34 +0000 (09:56 -0300)
This way we can use it outside of ui/browsers/hists.c and extend it in
following patches.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1466459899-1166-3-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/ui/browsers/hists.c
tools/perf/ui/browsers/hists.h [new file with mode: 0644]

index b1b6054..cc8dece 100644 (file)
 #include "../../util/top.h"
 #include "../../arch/common.h"
 
-#include "../browser.h"
+#include "../browsers/hists.h"
 #include "../helpline.h"
 #include "../util.h"
 #include "../ui.h"
 #include "map.h"
 #include "annotate.h"
 
-struct hist_browser {
-       struct ui_browser   b;
-       struct hists        *hists;
-       struct hist_entry   *he_selection;
-       struct map_symbol   *selection;
-       struct hist_browser_timer *hbt;
-       struct pstack       *pstack;
-       struct perf_env *env;
-       int                  print_seq;
-       bool                 show_dso;
-       bool                 show_headers;
-       float                min_pcnt;
-       u64                  nr_non_filtered_entries;
-       u64                  nr_hierarchy_entries;
-       u64                  nr_callchain_rows;
-};
-
 extern void hist_browser__init_hpp(void);
 
 static int hists__browser_title(struct hists *hists,
diff --git a/tools/perf/ui/browsers/hists.h b/tools/perf/ui/browsers/hists.h
new file mode 100644 (file)
index 0000000..9b6785c
--- /dev/null
@@ -0,0 +1,23 @@
+#ifndef _PERF_UI_BROWSER_HISTS_H_
+#define _PERF_UI_BROWSER_HISTS_H_ 1
+
+#include "ui/browser.h"
+
+struct hist_browser {
+       struct ui_browser   b;
+       struct hists        *hists;
+       struct hist_entry   *he_selection;
+       struct map_symbol   *selection;
+       struct hist_browser_timer *hbt;
+       struct pstack       *pstack;
+       struct perf_env     *env;
+       int                  print_seq;
+       bool                 show_dso;
+       bool                 show_headers;
+       float                min_pcnt;
+       u64                  nr_non_filtered_entries;
+       u64                  nr_hierarchy_entries;
+       u64                  nr_callchain_rows;
+};
+
+#endif /* _PERF_UI_BROWSER_HISTS_H_ */