mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 04:32:03 +00:00
fc67297b16
Separate out GTK codes to a shared object called libperf-gtk.so. This time only GTK codes are built with -fPIC and libperf remains as is. Now run GTK hist and annotation browser using libdl. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Reviewed-by: Pekka Enberg <penberg@kernel.org> Cc: Andi Kleen <ak@linux.intel.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung.kim@lge.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/1379053663-13706-1-git-send-email-namhyung@kernel.org [ Fix it up wrt Ingo's tools/perf build speedups ] Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
30 lines
558 B
C
30 lines
558 B
C
#ifndef _PERF_UI_H_
|
|
#define _PERF_UI_H_ 1
|
|
|
|
#include <pthread.h>
|
|
#include <stdbool.h>
|
|
#include <linux/compiler.h>
|
|
|
|
extern pthread_mutex_t ui__lock;
|
|
extern void *perf_gtk_handle;
|
|
|
|
extern int use_browser;
|
|
|
|
void setup_browser(bool fallback_to_pager);
|
|
void exit_browser(bool wait_for_ok);
|
|
|
|
#ifdef HAVE_SLANG_SUPPORT
|
|
int ui__init(void);
|
|
void ui__exit(bool wait_for_ok);
|
|
#else
|
|
static inline int ui__init(void)
|
|
{
|
|
return -1;
|
|
}
|
|
static inline void ui__exit(bool wait_for_ok __maybe_unused) {}
|
|
#endif
|
|
|
|
void ui__refresh_dimensions(bool force);
|
|
|
|
#endif /* _PERF_UI_H_ */
|