Commit dc41b9b8 authored by Namhyung Kim's avatar Namhyung Kim Committed by Arnaldo Carvalho de Melo

perf ui: Change fallback policy of setup_browser()

If gtk2 support is not enabled (or failed for some reason) try TUI again
instead of falling directly back to the stdio interface.
Signed-off-by: default avatarNamhyung Kim <namhyung.kim@lge.com>
Acked-by: default avatarPekka Enberg <penberg@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1335761711-31403-6-git-send-email-namhyung.kim@lge.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 281ef544
#include "gtk.h" #include "gtk.h"
#include "../../util/cache.h" #include "../../util/cache.h"
void perf_gtk__init(bool fallback_to_pager __used) int perf_gtk__init(void)
{ {
gtk_init(NULL, NULL); return gtk_init_check(NULL, NULL) ? 0 : -1;
} }
void perf_gtk__exit(bool wait_for_ok __used) void perf_gtk__exit(bool wait_for_ok __used)
......
...@@ -13,13 +13,14 @@ void setup_browser(bool fallback_to_pager) ...@@ -13,13 +13,14 @@ void setup_browser(bool fallback_to_pager)
switch (use_browser) { switch (use_browser) {
case 2: case 2:
perf_gtk__init(fallback_to_pager); if (perf_gtk__init() == 0)
break; break;
/* fall through */
case 1: case 1:
ui__init(fallback_to_pager); use_browser = 1;
break; if (ui__init() == 0)
break;
/* fall through */
default: default:
if (fallback_to_pager) if (fallback_to_pager)
setup_pager(); setup_pager();
......
...@@ -100,7 +100,7 @@ static void ui__signal(int sig) ...@@ -100,7 +100,7 @@ static void ui__signal(int sig)
exit(0); exit(0);
} }
int ui__init(bool fallback_to_pager __used) int ui__init(void)
{ {
int err; int err;
......
...@@ -45,27 +45,24 @@ void setup_browser(bool fallback_to_pager); ...@@ -45,27 +45,24 @@ void setup_browser(bool fallback_to_pager);
void exit_browser(bool wait_for_ok); void exit_browser(bool wait_for_ok);
#ifdef NO_NEWT_SUPPORT #ifdef NO_NEWT_SUPPORT
static inline int ui__init(bool fallback_to_pager) static inline int ui__init(void)
{ {
if (fallback_to_pager) return -1;
setup_pager();
return 0;
} }
static inline void ui__exit(bool wait_for_ok __used) {} static inline void ui__exit(bool wait_for_ok __used) {}
#else #else
int ui__init(bool fallback_to_pager); int ui__init(void);
void ui__exit(bool wait_for_ok); void ui__exit(bool wait_for_ok);
#endif #endif
#ifdef NO_GTK2_SUPPORT #ifdef NO_GTK2_SUPPORT
static inline void perf_gtk__init(bool fallback_to_pager) static inline int perf_gtk__init(void)
{ {
if (fallback_to_pager) return -1;
setup_pager();
} }
static inline void perf_gtk__exit(bool wait_for_ok __used) {} static inline void perf_gtk__exit(bool wait_for_ok __used) {}
#else #else
void perf_gtk__init(bool fallback_to_pager); int perf_gtk__init(void);
void perf_gtk__exit(bool wait_for_ok); void perf_gtk__exit(bool wait_for_ok);
#endif #endif
#endif /* NO_NEWT_SUPPORT && NO_GTK2_SUPPORT */ #endif /* NO_NEWT_SUPPORT && NO_GTK2_SUPPORT */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment