Merge branch 'x86-debug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / tools / perf / ui / gtk / setup.c
1 #include "gtk.h"
2 #include "../../util/cache.h"
3 #include "../../util/debug.h"
4
5 extern struct perf_error_ops perf_gtk_eops;
6
7 int perf_gtk__init(void)
8 {
9 perf_error__register(&perf_gtk_eops);
10 return gtk_init_check(NULL, NULL) ? 0 : -1;
11 }
12
13 void perf_gtk__exit(bool wait_for_ok __used)
14 {
15 perf_error__unregister(&perf_gtk_eops);
16 gtk_main_quit();
17 }
This page took 0.031728 seconds and 5 git commands to generate.