]> Pileus Git - ~andy/linux/blob - tools/perf/ui/gtk/setup.c
x86-64, reboot: Be more paranoid in 64-bit reboot=bios
[~andy/linux] / tools / perf / ui / gtk / setup.c
1 #include "gtk.h"
2 #include "../../util/cache.h"
3
4 int perf_gtk__init(void)
5 {
6         return gtk_init_check(NULL, NULL) ? 0 : -1;
7 }
8
9 void perf_gtk__exit(bool wait_for_ok __used)
10 {
11         gtk_main_quit();
12 }