aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/ui/gtk/setup.c
blob: 8295299577660b24b99405a22965316f04f96e98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "gtk.h"
#include "../../util/cache.h"

int perf_gtk__init(void)
{
	return gtk_init_check(NULL, NULL) ? 0 : -1;
}

void perf_gtk__exit(bool wait_for_ok __used)
{
	gtk_main_quit();
}