mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-03 15:55:38 +00:00

Add helpline API implementation to GTK front-end. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Acked-by: Pekka Enberg <penberg@kernel.org> Cc: Ingo Molnar <mingo@kernel.org> 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/1345104894-14205-3-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
18 lines
373 B
C
18 lines
373 B
C
#include "gtk.h"
|
|
#include "../../util/cache.h"
|
|
#include "../../util/debug.h"
|
|
|
|
extern struct perf_error_ops perf_gtk_eops;
|
|
|
|
int perf_gtk__init(void)
|
|
{
|
|
perf_error__register(&perf_gtk_eops);
|
|
perf_gtk__init_helpline();
|
|
return gtk_init_check(NULL, NULL) ? 0 : -1;
|
|
}
|
|
|
|
void perf_gtk__exit(bool wait_for_ok __used)
|
|
{
|
|
perf_error__unregister(&perf_gtk_eops);
|
|
gtk_main_quit();
|
|
}
|