1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/compiler.h>
6 extern struct perf_error_ops perf_gtk_eops
;
8 int perf_gtk__init(void)
10 perf_error__register(&perf_gtk_eops
);
11 perf_gtk__init_helpline();
12 gtk_ui_progress__init();
15 return gtk_init_check(NULL
, NULL
) ? 0 : -1;
18 void perf_gtk__exit(bool wait_for_ok __maybe_unused
)
20 if (!perf_gtk__is_active_context(pgctx
))
22 perf_error__unregister(&perf_gtk_eops
);