x86: Move call to print_modules() out of show_regs()
[deliverable/linux.git] / 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 }
This page took 0.030625 seconds and 5 git commands to generate.